更新文件: README.txt, rclonemount.sh, docker-compose.yml, webdav_simulator.amd64, runembysim.sh 等9个文件
This commit is contained in:
34
docker-compose.yml
Normal file
34
docker-compose.yml
Normal file
@ -0,0 +1,34 @@
|
||||
version: '3.5'
|
||||
|
||||
services:
|
||||
|
||||
nginx:
|
||||
image: nginx:alpine
|
||||
container_name: embyUrl-nginx
|
||||
ports:
|
||||
- 8097: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:
|
||||
- 8096:8096
|
||||
- 8920:8920
|
||||
devices:
|
||||
- /dev/dri:/dev/dri
|
||||
restart: on-failure
|
Reference in New Issue
Block a user