-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (35 loc) · 1.17 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
version: "3"
services:
server-1:
image: heaty566/mono-fpt-v2-blog:latest
container_name: mono-fpt-v2-blog-1
networks:
- reverse-proxy
expose:
- 80
volumes:
- ./config:/app/config
- ./share:/app/wwwroot/public
server-2:
image: heaty566/mono-fpt-v2-blog:latest
container_name: mono-fpt-v2-blog-2
networks:
- reverse-proxy
expose:
- 80
volumes:
- ./config:/app/config
- ./share:/app/wwwroot/public
server-3:
image: heaty566/mono-fpt-v2-blog:latest
container_name: mono-fpt-v2-blog-3
networks:
- reverse-proxy
expose:
- 80
volumes:
- ./config:/app/config
- ./share:/app/wwwroot/public
networks:
reverse-proxy:
external: true