File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : " 3.8"
2
+ services :
3
+ # bind mount example
4
+ linuxgsm-sm-bind :
5
+ image : gameservermanagers/gameserver:sm
6
+ # image: ghcr.io/gameservermanagers/gameserver:sm
7
+ container_name : smserver
8
+ restart : unless-stopped
9
+ volumes :
10
+ - /path/to/linuxgsm/smserver:/data
11
+ network_mode : host
12
+
13
+ # volume example
14
+ linuxgsm-sm-volume :
15
+ image : gameservermanagers/gameserver:sm
16
+ # image: ghcr.io/gameservermanagers/gameserver:sm
17
+ container_name : smserver
18
+ restart : unless-stopped
19
+ volumes :
20
+ - linuxgsm-sm:/data
21
+ network_mode : host
22
+
23
+ volumes :
24
+ linuxgsm-sm :
Original file line number Diff line number Diff line change
1
+ version : " 3.8"
2
+ services :
3
+ # bind mount example
4
+ linuxgsm-xnt-bind :
5
+ image : gameservermanagers/gameserver:xnt
6
+ # image: ghcr.io/gameservermanagers/gameserver:xnt
7
+ container_name : xntserver
8
+ restart : unless-stopped
9
+ volumes :
10
+ - /path/to/linuxgsm/xntserver:/data
11
+ network_mode : host
12
+
13
+ # volume example
14
+ linuxgsm-xnt-volume :
15
+ image : gameservermanagers/gameserver:xnt
16
+ # image: ghcr.io/gameservermanagers/gameserver:xnt
17
+ container_name : xntserver
18
+ restart : unless-stopped
19
+ volumes :
20
+ - linuxgsm-xnt:/data
21
+ network_mode : host
22
+
23
+ volumes :
24
+ linuxgsm-xnt :
You can’t perform that action at this time.
0 commit comments