-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
128 lines (121 loc) · 2.9 KB
/
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
version: "3.9"
services:
### accounts database that account service will be connected to
accounts_database:
container_name: postgres_container
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: accounts
volumes:
- postgres:/var/lib/postgresql/data
ports:
- "5433:5432"
networks:
- new
healthcheck:
test: pg_isready -U postgres -d accounts
interval: 10s
timeout: 3s
retries: 5
transactions_database:
container_name: postgres_container_2
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: pp
POSTGRES_USER: pp
POSTGRES_DB: transactions
volumes:
- postgres1:/var/lib/postgresql/data
ports:
- "5434:5432"
networks:
- new
healthcheck:
test: pg_isready -U pp -d transactions
interval: 10s
timeout: 3s
retries: 5
### REDIS
cache:
image: redis:6.2-alpine
restart: always
ports:
- '6379:6379'
command: redis-server --save 20 1 --loglevel warning
volumes:
- cache:/data
networks:
- new
accounts:
build:
context: .
dockerfile: ./cmd/accounts/Dockerfile
ports:
- "8080:8080"
volumes:
- ./cmd/accounts/config-prod.yaml:/config.yaml
environment:
- "DATABASE_HOST=accounts_database"
- "DATABASE_USERNAME=postgres"
- "DATABASE_PASSWORD=postgres"
- "DATABASE_PORT=5432"
- "DATABASE_DATABASE=accounts"
- "REDIS_HOST=cache"
- "REDIS_PORT=6379"
depends_on:
- "accounts_database"
- "cache"
restart: on-failure
networks:
- new
transactions:
build:
context: .
dockerfile: ./cmd/transactions/Dockerfile
ports:
- "8081:8080"
volumes:
- ./cmd/transactions/config-prod.yaml:/config.yaml
depends_on:
- "transactions_database"
- "cache"
restart: on-failure
networks:
- new
migrate:
image: migrate/migrate
networks:
- new
depends_on:
- accounts_database
restart: on-failure
volumes:
- ./pkg/database/migrations/accounts:/accounts_migrations
command: ["-path", "/accounts_migrations", "-database", "postgres://postgres:postgres@accounts_database:5432/accounts?sslmode=disable", "up"]
links:
- accounts_database
migrate_transactions:
image: migrate/migrate
networks:
- new
depends_on:
- transactions_database
restart: on-failure
volumes:
- ./pkg/database/migrations/transactions:/transactions_migrations
command: ["-path", "/transactions_migrations", "-database", "postgres://pp:pp@transactions_database:5432/transactions?sslmode=disable", "up"]
links:
- transactions_database
networks:
new:
volumes:
postgres:
postgres1:
config:
accounts_migrations:
cache:
driver: local