Files
openfoodnetwork/docker/server.ps1
Neal Chambers 21b7e6e567 Use Dockerv2
2024-09-26 09:21:00 +09:00

6 lines
413 B
PowerShell

# This script launches the whole stack of containers (web server, database, webpack, redis, etc.)
$DateTime=Get-Date -Format "yyyyMMdd-HHmmss"
Write-Host "Docker compose up: launches the whole stack of containers" -ForegroundColor Blue
docker compose up -d > log/server-$DateTime.log 2>&1
Write-Host "Docker compose up finished : View this app in your web browser at http://localhost:3000/" -ForegroundColor Blue