Skip to content

Commit c2b1e84

Browse files
AetherUnboundsea-kelp
authored andcommitted
Only use port 3048 for production
1 parent 81d3e15 commit c2b1e84

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docker-compose.override.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ services:
77
FLASK_ENV: development
88
FLASK_DEBUG: 1
99
FLASK_APP: run:flask
10-
command: flask run --host=0.0.0.0 --port=3048
10+
command: flask run --host=0.0.0.0 --port=3000
1111
volumes:
1212
- ./app:/app/app
13+
ports:
14+
- "3000:3000"

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ services:
1313
- .env
1414
volumes:
1515
- ./db.sqlite3:/app/db.sqlite3
16-
command: gunicorn --workers=2 --bind 0.0.0.0:3048 wsgi:app
16+
command: gunicorn --workers=2 --bind 0.0.0.0:3000 wsgi:app
1717
ports:
18-
- "3048:3048"
18+
- "3048:3000"

0 commit comments

Comments
 (0)