Remove development service from docker-compose.yml and update production service port from 8080 to 9090.

This commit is contained in:
Denis Pajaziti
2025-11-12 12:50:47 +01:00
parent 2cd5f7069c
commit 28499689c0
+1 -12
View File
@@ -6,17 +6,6 @@ x-default-volumes: &default_volumes
- ./:/app
services:
flask-dev:
build:
context: .
target: development
args:
<<: *build_args
image: "app-development"
ports:
- "8080:5000"
<<: *default_volumes
flask-prod:
build:
context: .
@@ -25,7 +14,7 @@ services:
<<: *build_args
image: "app-production"
ports:
- "8080:5000"
- "9090:5000"
environment:
FLASK_ENV: production
FLASK_DEBUG: 0