0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/docker-compose.yml
2020-02-27 16:40:56 -08:00

23 lines
442 B
YAML

version: '3'
services:
db:
image: postgres:alpine
environment:
POSTGRES_USER: posthog
POSTGRES_DB: posthog
web:
build:
context: .
dockerfile: production.Dockerfile
volumes:
- .:/code
ports:
- "8000:8000"
environment:
IS_DOCKER: "true"
DATABASE_URL: "postgres://posthog@db:5432/posthog"
SECRET_KEY: "<randomly generated secret key>"
depends_on:
- db