-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
24 lines (24 loc) · 708 Bytes
/
compose.yaml
File metadata and controls
24 lines (24 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: '3.9'
services:
ginrcon:
image: ghcr.io/holysoles/ginrcon:latest
restart: unless-stopped
ports:
- "8085:8080/tcp"
environment:
PORT: 8080
TRUSTED_PROXIES: "192.168.1.2"
RCON_SERVER: gameserver # hostname for connection, if in this compose file, can be service name
RCON_PORT: 25575
RCON_ADMIN_PASSWORD: somepass
healthcheck:
test: ["CMD-SHELL", "curl", "-f", "http://localhost:${PORT}/status"]
interval: 90s
timeout: 10s
retries: 3
start_period: 10s
# Optionally set order dependency here for startup
#depends-on:
# - "gameserver"
#gameserver:
# image: jammsen/palworld-dedicated-server:latest