28 lines
519 B
YAML
28 lines
519 B
YAML
# Docker Compose File für Wizarr
|
|
# docker-compose -f docker-compose.wizarr.yml up -d
|
|
version: '3.5'
|
|
|
|
networks:
|
|
wizarr:
|
|
|
|
services:
|
|
wizarr:
|
|
image: ghcr.io/wizarrrr/wizarr:4.2.0
|
|
container_name: wizarr
|
|
restart: always
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
ports:
|
|
- "5690:5690"
|
|
networks:
|
|
- wizarr
|
|
volumes:
|
|
- "/docker/wizarr/database:/data/database"
|
|
logging:
|
|
driver: "gelf"
|
|
options:
|
|
gelf-address: "udp://192.168.1.250:12201"
|
|
|