version: '3.5' services: nginx: image: nginx:alpine container_name: embyUrl-nginx ports: - 8096:80 volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf - ./nginx/conf.d:/etc/nginx/conf.d restart: always emby: image: emby/embyserver container_name: embysim sysctls: net.ipv6.conf.all.disable_ipv6: "1" environment: - UID=1000 - GID=100 - GIDLIST=100 volumes: - /www/webdavsim/emby.config:/config - /www/webdavsim/external:/external:rshared - /www/webdavsim/emby.tmp:/tmp - /www/webdavsim/emby.cache:/cache ports: - 8097:8096 - 8920:8920 devices: - /dev/dri:/dev/dri restart: on-failure