-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 785 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (37 loc) · 785 Bytes
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
version: '3.8'
services:
tuum-postgres:
image: postgres:15.3
container_name: tuum-postgres
volumes:
- tuum-data:/var/lib/postgresql/data
expose:
- 5432
ports:
- 5488:5432
environment:
- POSTGRES_DB=db
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
restart: unless-stopped
tuum-rabbitmq:
image: rabbitmq:3.9.29
container_name: tuum-rabbitmq
ports:
- 5672:5672
- 15672:15672
environment:
- RABBITMQ_DEFAULT_USER=user
- RABBITMQ_DEFAULT_PASS=pass
restart: unless-stopped
tuum-project:
build: ./
container_name: tuum-project
ports:
- 8095:8095
depends_on:
- tuum-postgres
- tuum-rabbitmq
restart: unless-stopped
volumes:
tuum-data: