-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
144 lines (135 loc) · 3.12 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
services:
proxy:
container_name: proxy
image: nginxproxy/nginx-proxy:alpine
networks:
- mikl-net
ports:
- 80:80
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
the-myspace:
container_name: the-myspace
image: chiefmikey/the-myspace:latest
depends_on:
- "proxy"
networks:
- mikl-net
expose:
- "3000"
healthcheck:
test: node healthcheck.js
interval: 10s
timeout: 10s
retries: 10
environment:
- VIRTUAL_HOST=themyspace.org,www.themyspace.org
gitlang:
container_name: gitlang
image: chiefmikey/gitlang:latest
depends_on:
name-generator_client:
condition: service_healthy
networks:
- mikl-net
expose:
- "3004"
healthcheck:
test: node healthcheck.js
interval: 10s
timeout: 10s
retries: 10
environment:
- VIRTUAL_HOST=gitlang.net,www.gitlang.net
tommyman:
container_name: tommyman
image: chiefmikey/tommyman:latest
depends_on:
the-myspace:
condition: service_healthy
networks:
- mikl-net
expose:
- "3003"
healthcheck:
test: node healthcheck.js
interval: 10s
timeout: 10s
retries: 10
environment:
- VIRTUAL_HOST=tommyman.itsacloudynight.com
cloudyman:
container_name: cloudyman
image: chiefmikey/cloudyman:latest
depends_on:
the-myspace:
condition: service_healthy
networks:
- mikl-net
expose:
- "3002"
healthcheck:
test: node healthcheck.js
interval: 10s
timeout: 10s
retries: 10
environment:
- VIRTUAL_HOST=itsacloudynight.com,www.itsacloudynight.com,cloudyman.itsacloudynight.com
name-generator_client:
container_name: name-generator_client
image: chiefmikey/name-generator:latest
depends_on:
name-generator_db:
condition: service_healthy
networks:
- mikl-net
expose:
- "3001"
healthcheck:
test: node healthcheck.js
interval: 10s
timeout: 10s
retries: 10
environment:
- VIRTUAL_HOST=name.themyspace.org,www.name.themyspace.org
name-generator_db:
container_name: name-generator_db
image: mongo
depends_on:
the-myspace:
condition: service_healthy
networks:
- mikl-net
volumes:
- mongo-data:/data/db
environment:
- MONGO_INITDB_DATABASE=namegenerator
ports:
- 27017:27017
healthcheck:
test:
echo 'db.runCommand("ping").ok' | mongo localhost:27017/namegenerator --quiet
interval: 10s
timeout: 10s
retries: 10
# name-generator_db:
# container_name: name-generator_db
# image: chiefmikey/alpine-cassandra:latest
# depends_on:
# the-myspace:
# condition: service_healthy
# networks:
# - mikl-net
# volumes:
# - cassandra-data:/var/lib/cassandra
# healthcheck:
# test:
# su -s /opt/cassandra/bin/bash -c 'bin/cqlsh --debug' cassandra
# interval: 10s
# timeout: 10s
# retries: 10
volumes:
mongo-data:
# cassandra-data:
networks:
mikl-net: