25 lines
628 B
YAML
25 lines
628 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
murmur:
|
|
image: skobkin/murmur-official-static
|
|
container_name: murmur
|
|
ports:
|
|
- "64738:64738/tcp"
|
|
- "64738:64738/udp"
|
|
volumes:
|
|
# Database location
|
|
- "./db:/data"
|
|
# SSL cert and key
|
|
- "/etc/ssl/${MURMUR_HOSTNAME}:/ssl:ro"
|
|
# murmur.ini location
|
|
- "./config:/config:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
env_file: .env
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "${LOG_MAX_SIZE:-5m}"
|
|
max-file: "${LOG_MAX_FILE:-5}"
|
|
# TODO: try to integrate with neilpang/acme.sh |