-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
129 lines (128 loc) · 2.82 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
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
version: '3'
services:
home:
build: home
restart: always
ports:
- "40000:80"
cards-against-humanity:
image: emcniece/dockeryourxyzzy:3
restart: always
ports:
- "40001:8080"
pictionary:
build: pictionary
restart: always
ports:
- "40002:8080"
battleship:
build: battleship
restart: always
ports:
- "40003:5000"
chess:
build: chess
restart: always
ports:
- "40004:8080"
catan:
build: catan
restart: always
ports:
- "40005:4567"
cards-against-humanity-massive-decks:
image: tianon/true
depends_on:
- cards-against-humanity-massive-decks-server
- cards-against-humanity-massive-decks-client
cards-against-humanity-massive-decks-server:
image: ghcr.io/lattyware/massivedecks/server@sha256:bd203a244f504d868e7355db33634b1312e5a954dd12fa4435665ce847b840f5
restart: always
networks:
- cards-against-humanity-massive-decks
cards-against-humanity-massive-decks-client:
image: ghcr.io/lattyware/massivedecks/client@sha256:ec81342a3fd6808c277f927450c19d233f90df164007b1d2d8a54723d1478a6e
restart: always
networks:
- cards-against-humanity-massive-decks
links:
- "cards-against-humanity-massive-decks-server:server"
depends_on:
- cards-against-humanity-massive-decks-server
ports:
- "40006:8080"
spyfall:
build: spyfall
restart: always
ports:
- "40007:3000"
agar-io:
build: agar-io
restart: always
ports:
- "40008:3000"
agar-io-cigar-ogar:
image: tianon/true
depends_on:
- agar-io-cigar
- agar-io-ogar
agar-io-cigar:
build:
context: agar-io-cigar
args:
OGAR_SERVER: "localhost:40010"
restart: always
depends_on:
- agar-io-ogar
ports:
- "40009:3000"
agar-io-ogar:
build: agar-io-ogar
restart: always
ports:
- "40010:443"
kung-fu-chess:
build: kung-fu-chess
restart: always
ports:
- "40011:8080"
codenames:
build: codenames
restart: always
ports:
- "40012:9091"
werewolf:
build: werewolf
restart: always
ports:
- "40013:5000"
tetris-red-tetris:
build: tetris-red-tetris
restart: always
ports:
- "40014:4433"
tetris-teturisu:
image: tianon/true
depends_on:
- tetris-teturisu-server
- tetris-teturisu-client
tetris-teturisu-server:
build: tetris-teturisu-server
restart: always
ports:
- "40015:8001"
tetris-teturisu-client:
build:
context: tetris-teturisu-client
args:
TETURISU_SERVER: "localhost:40015"
restart: always
ports:
- "40016:8000"
tetris-battletris:
build: tetris-battletris
restart: always
ports:
- "40017:2020"
networks:
cards-against-humanity-massive-decks: