-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (57 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
62 lines (57 loc) · 1.38 KB
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
services:
mongo:
image: mongo
ports:
- '27017:27017'
volumes:
- mongo:/data/db
mumble:
image: mumblevoip/mumble-server:latest
environment:
- MUMBLE_SUPERUSER_PASSWORD=123456
ports:
- 64738:64738/tcp
- 64738:64738/udp
profiles: [mumble]
gameserver:
image: ghcr.io/tf2pickup-org/tf2-gameserver:latest
environment:
- 'SERVER_HOSTNAME=test game server 1'
- 'PORT=27015'
- 'CLIENT_PORT=27016'
- 'STEAM_PORT=27017'
- 'STV_PORT=27020'
- 'RCON_PASSWORD=123456'
- 'TF2PICKUPORG_API_ADDRESS=127.0.0.1:3000'
- 'TF2PICKUPORG_SECRET=xxxxxx'
network_mode: host
stdin_open: true
tty: true
profiles: [gameserver]
umami:
container_name: umami
image: ghcr.io/umami-software/umami:postgresql-latest
ports:
- '3001:3000'
environment:
DATABASE_URL: postgresql://umami:umami123@umami-db:5432/umami
DATABASE_TYPE: postgresql
HASH_SALT: replace-me-with-a-random-string
depends_on:
- umami-db
restart: always
profiles: [analytics]
umami-db:
container_name: umami-db
image: postgres:18-alpine
environment:
POSTGRES_DB: umami
POSTGRES_USER: umami
POSTGRES_PASSWORD: umami123
volumes:
- umami-db:/var/lib/postgresql/data
restart: always
profiles: [analytics]
volumes:
mongo:
umami-db: