mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
6 lines
413 B
PowerShell
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 |