-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yaml
67 lines (66 loc) · 1.62 KB
/
docker-compose.dev.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
version: "3.7"
services:
# STORAGE
minio:
extends:
file: docker-compose.base.yaml
service: minio
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
volumes:
- miniostorage:/data
temporal-postgresql:
extends:
file: docker-compose.base.yaml
service: temporal-postgresql
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
networks:
- temporal-network
volumes:
- temporal-postgresql:/var/lib/postgresql/data
mongodb:
extends:
file: docker-compose.base.yaml
service: mongodb
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_ROOT_USER}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_ROOT_PASSWORD}
volumes:
- mongodb:/data/db
# TEMPORAL
temporal:
extends:
file: docker-compose.base.yaml
service: temporal
networks:
- temporal-network
environment:
- DB=postgresql
- DB_PORT=5432
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PWD=${POSTGRES_PASSWORD}
- POSTGRES_SEEDS=temporal-postgresql
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
temporal-ui:
extends:
file: docker-compose.base.yaml
service: temporal-ui
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CORS_ORIGINS=http://localhost:3000
networks:
- temporal-network
networks:
temporal-network:
driver: bridge
name: temporal-network
ferretdb-network:
driver: bridge
name: ferretdb-network
volumes:
miniostorage:
temporal-postgresql:
mongodb: