We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c87541 commit a9353a8Copy full SHA for a9353a8
.env.example
@@ -33,6 +33,9 @@ DB_PORT=5432
33
CELERY_BROKER_URL=redis://localhost:6379
34
CELERY_RESULT_BACKEND=redis://localhost:6379
35
36
+# App Settings
37
+APP_BIND_PORT=8234 # Port on host machine to bind the application
38
+
39
# Superuser credentials
40
SUPERUSER_EMAIL=[email protected]
41
SUPERUSER_PASSWORD=admin123
docker-compose.yml
@@ -8,7 +8,7 @@ services:
8
volumes:
9
- .:/app
10
ports:
11
- - "8000:8000"
+ - "${APP_BIND_PORT:-8234}:8000"
12
env_file:
13
- .env
14
depends_on:
0 commit comments