-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
100 lines (94 loc) · 2.08 KB
/
docker-compose-dev.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
version: "3.8"
services:
db:
container_name: db
image: postgres:15
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: mysecretpassword
volumes:
- ./data/db:/var/lib/postgresql/data
command: postgres -c 'max_connections=1000'
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
networks:
- net
migration:
container_name: migration
image: rust:latest
depends_on:
db:
condition: service_healthy
networks:
- net
volumes:
- ./db:/scripts
entrypoint: bash -c "apt update && apt install -y jq && cd scripts && chmod +x /scripts/migration.sh && /scripts/migration.sh"
pgweb:
container_name: pgweb
image: sosedoff/pgweb
restart: always
ports:
- 8081:8081
environment:
- PGWEB_DATABASE_URL=postgres://postgres:mysecretpassword@db:5432?sslmode=disable
depends_on:
- db
- migration
networks:
- net
funds_monitor:
container_name: funds_monitor
build:
context: .
dockerfile: Dockerfile
target: funds_monitor
networks:
- net
depends_on:
db:
condition: service_healthy
migration:
condition: service_completed_successfully
env_file:
- ./funds_monitor/.env
fallback_monitor:
container_name: fallback_monitor
build:
context: .
dockerfile: Dockerfile
target: fallback_monitor
depends_on:
db:
condition: service_healthy
migration:
condition: service_completed_successfully
networks:
- net
env_file:
- ./fallback_monitor/.env
turbo-da-core:
container_name: turbo-da-core
ports:
- 8000:8000
build:
context: .
dockerfile: Dockerfile
target: turbo-da-core
depends_on:
db:
condition: service_healthy
migration:
condition: service_completed_successfully
networks:
- net
env_file:
- ./turbo-da-core/.env
networks:
net:
driver: bridge