We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81d3e15 commit c2b1e84Copy full SHA for c2b1e84
docker-compose.override.yml
@@ -7,6 +7,8 @@ services:
7
FLASK_ENV: development
8
FLASK_DEBUG: 1
9
FLASK_APP: run:flask
10
- command: flask run --host=0.0.0.0 --port=3048
+ command: flask run --host=0.0.0.0 --port=3000
11
volumes:
12
- ./app:/app/app
13
+ ports:
14
+ - "3000:3000"
docker-compose.yml
@@ -13,6 +13,6 @@ services:
- .env
15
- ./db.sqlite3:/app/db.sqlite3
16
- command: gunicorn --workers=2 --bind 0.0.0.0:3048 wsgi:app
+ command: gunicorn --workers=2 --bind 0.0.0.0:3000 wsgi:app
17
ports:
18
- - "3048:3048"
+ - "3048:3000"
0 commit comments