-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
57 lines (50 loc) · 1.06 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
version: '3.8'
networks:
netdc1:
driver: bridge
services:
# service1:
# build:
# context: ./service1
# dockerfile: Dockerfile
# restart: always
# ports:
# - "8081:8081"
# deploy:
# mode: replicated
# replicas: 1
# volumes:
# - service1-data:/path/to/service1/data
# networks:
# - netdc1
# client:
# build:
# context: ./client
# dockerfile: Dockerfile
# restart: always
# ports:
# - "8080:8080"
# deploy:
# mode: replicated
# replicas: 1
# volumes:
# - client-data:/path/to/client/data
# networks:
# - netdc1
postgres:
image: postgres:14-alpine
restart: always
environment:
POSTGRES_DB: xclonedb
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
- ./init-scripts:/docker-entrypoint-initdb.d # Mount the init-scripts directory
networks:
- netdc1
volumes:
# service1-data:
postgres-data: