-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
74 lines (69 loc) · 1.68 KB
/
docker-compose.yaml
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
version: "2"
services:
nginx-test:
image: nginx:latest
container_name: nginx-test
hostname: nginx-test
command: ["./tmp/wait_for_it.sh","-t" ,"200" , "app6:8080", '--' , 'nginx-debug', '-g', 'daemon off;']
ports:
- 2222:80
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/upstream.conf:/etc/nginx/conf.d/upstream.conf
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./wait_for_it.sh:/tmp/wait_for_it.sh
depends_on:
- app1
- app2
- app3
- app4
- app5
- app6
app1:
image: golang:latest
hostname: app1
container_name: app1
command: "go run main.go"
working_dir: "/tmp/go-server"
volumes:
- ./go-server/:/tmp/go-server
app2:
image: golang:latest
hostname: app2
container_name: app2
command: "go run main.go"
working_dir: "/tmp/go-server"
volumes:
- ./go-server/:/tmp/go-server
app3:
image: golang:latest
hostname: app3
container_name: app3
command: "go run main.go"
working_dir: "/tmp/go-server"
volumes:
- ./go-server/:/tmp/go-server
app4:
image: golang:latest
hostname: app4
container_name: app4
command: "go run main.go"
working_dir: "/tmp/go-server"
volumes:
- ./go-server/:/tmp/go-server
app5:
image: golang:latest
hostname: app5
container_name: app5
command: "go run main.go"
working_dir: "/tmp/go-server"
volumes:
- ./go-server/:/tmp/go-server
app6:
image: golang:latest
hostname: app6
container_name: app6
command: "go run main.go"
working_dir: "/tmp/go-server"
volumes:
- ./go-server/:/tmp/go-server