forked from PostHog/posthog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.e2e.yml
34 lines (33 loc) · 936 Bytes
/
docker-compose.e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: '3'
services:
db:
image: postgres:alpine
container_name: posthog_db
environment:
POSTGRES_USER: posthog
POSTGRES_DB: posthog
POSTGRES_PASSWORD: posthog
redis:
image: 'redis:alpine'
container_name: posthog_redis
web:
container_name: posthog_server
build:
context: .
dockerfile: production.Dockerfile
command: ./bin/docker & tail -f /dev/null
ports:
- '8000:8000'
environment:
DATABASE_URL: 'postgres://posthog:posthog@db:5432/posthog'
REDIS_URL: 'redis://redis:6379/'
SECRET_KEY: '<randomly generated secret key>'
DEBUG: 1
DISABLE_SECURE_SSL_REDIRECT: 1
OPT_OUT_CAPTURE: 1
depends_on:
- db
- redis
links:
- db:db
- redis:redis