0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00

Update ports on docker-compose

This commit is contained in:
Tim Glaser 2020-02-17 09:54:04 -08:00
parent a86398ecc5
commit 27b6afe161

View File

@ -10,14 +10,14 @@ services:
build:
context: .
dockerfile: production.Dockerfile
command: gunicorn posthog.wsgi --bind 0.0.0.0:5000 --log-file -
command: gunicorn posthog.wsgi --bind 0.0.0.0:8000 --log-file -
volumes:
- .:/code
ports:
- "5000:5000"
- "8000:8000"
environment:
IS_DOCKER: "true"
DATABASE_URL: "postgres://posthog@db:5432/posthog"
SECRET_KEY: "<randomly generated secret key>"
depends_on:
- db
- db