mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
Add emby and gitlab
This commit is contained in:
parent
9b031c14b6
commit
409828214b
13 changed files with 1743 additions and 3 deletions
22
roles/emby-docker/files/emby/docker-compose.yml
Normal file
22
roles/emby-docker/files/emby/docker-compose.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
version: '2.2'
|
||||
|
||||
networks:
|
||||
proxy-tier:
|
||||
external:
|
||||
name: nginx-proxy
|
||||
|
||||
services:
|
||||
emby:
|
||||
image: nvllsvm/emby-unlocked
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /media:/media:ro
|
||||
environment:
|
||||
- PUID=33
|
||||
- PGID=33
|
||||
- VIRTUAL_HOST=emby.banditlair.com
|
||||
- VIRTUAL_NETWORK=nginx-proxy
|
||||
- VIRTUAL_PORT=8096
|
||||
networks:
|
||||
- proxy-tier
|
||||
restart: always
|
||||
Loading…
Add table
Add a link
Reference in a new issue