mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 23:30:12 +01:00
8 lines
184 B
Text
8 lines
184 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
export BIND_DOCKER_SERVICE_PORTS=1
|
||
|
|
appdir=$(cd $(dirname "$0")/.. && pwd)
|
||
|
|
[ -f /etc/app-env ] || exec "$appdir/script/docker-environment" $0 $@
|
||
|
|
|
||
|
|
bin/rails server -b 0.0.0.0
|