mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
10 lines
208 B
Bash
Executable File
10 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
|
|
echo '########################'
|
|
echo 'BEGIN: docker compose up'
|
|
echo '########################'
|
|
echo 'View this app in your web browser at'
|
|
echo 'http://localhost:3000/'
|
|
docker compose up
|