forked from breatheco-de/apiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (44 loc) · 968 Bytes
/
docker-compose.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: "3.8"
services:
4geeks:
image: geeksacademy/breathecode:development
env_file:
- ./.env
environment:
- REDIS_URL=redis://redis:6379
- DATABASE_URL=postgres://user:pass@postgres:5432/breathecode
- CELERY_DISABLE_SCHEDULER=
- ALLOW_UNSAFE_CYPRESS_APP=True
ports:
- "8000:8000"
depends_on:
- postgres
- redis
redis:
image: redis:alpine
ports:
- "6379:6379"
postgres:
image: postgres:alpine
volumes:
- postgres_data:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=breathecode
ports:
- "5432:5432"
adminer:
image: adminer
ports:
- 8080:8080
depends_on:
- postgres
bigquery:
image: ghcr.io/goccy/bigquery-emulator:latest
command: --project=test --dataset=4geeks
ports:
- "9050:9050"
- "9060:9060"
volumes:
postgres_data: