Murmur server docker image
- Dockerfile 100%
| .woodpecker | ||
| .gitignore | ||
| Dockerfile | ||
| LICENSE | ||
| README.md | ||
| UPGRADE.md | ||
Murmur server docker image
How to use
The recommended way to run Murmur is via Docker Compose from the docker-stacks repository.
services:
murmur:
image: 'skobkin/murmur:${IMAGE_TAG:-latest}'
container_name: murmur
ports:
- "64738:64738/tcp"
- "64738:64738/udp"
volumes:
- "./db:/data"
- "/etc/ssl/${MURMUR_HOSTNAME}:/ssl:ro"
- "./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}"
See the docker-stacks/murmur directory for the full example, including .env and configuration files.
Upgrading
For breaking changes between image versions, see UPGRADE.md.