services: add Emby
This commit is contained in:
parent
5b1ba56ba9
commit
5d6acc110e
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,3 +15,4 @@
|
||||||
/quassel
|
/quassel
|
||||||
/lidarr
|
/lidarr
|
||||||
/grocy
|
/grocy
|
||||||
|
/emby
|
||||||
|
|
|
@ -335,6 +335,27 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- 9283:80
|
- 9283:80
|
||||||
|
|
||||||
|
emby:
|
||||||
|
image: linuxserver/emby
|
||||||
|
container_name: emby
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- VIRTUAL_HOST=emby.belanyi.fr
|
||||||
|
- LETSENCRYPT_HOST=emby.belanyi.fr
|
||||||
|
- LETSENCRYPT_EMAIL=brunobelanyi@gmail.com
|
||||||
|
- VIRTUAL_PORT=8096
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
- UMASK_SET=022 #optional
|
||||||
|
volumes:
|
||||||
|
- ./emby:/config
|
||||||
|
- ~/videos/shows:/data/tvshows
|
||||||
|
- ~/videos/movies:/data/movies
|
||||||
|
- /tmp/transcode:/transcode #optional
|
||||||
|
ports:
|
||||||
|
- 8096:8096
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
certs:
|
certs:
|
||||||
vhost.d:
|
vhost.d:
|
||||||
|
|
Reference in a new issue