Rename run.sh to entrypoint.sh

This commit is contained in:
rubenwardy 2019-11-21 23:16:39 +00:00
parent 77f8a79c51
commit 5466a2d64d
2 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,7 @@ services:
app:
build: .
command: ./utils/run.sh
command: ./utils/entrypoint.sh
env_file:
- config.env
ports:

View File

@ -1,5 +1,9 @@
#!/bin/bash
#
# The entrypoint for the docker containers
#
# Debug
# FLASK_APP=app/__init__.py FLASK_CONFIG=../config.cfg FLASK_DEBUG=1 python3 -m flask run -h 0.0.0.0 -p 5123