Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. ---
  2. version: "2"
  3. services:
  4. emby:
  5. image: linuxserver/emby
  6. container_name: emby
  7. environment:
  8. - PUID=1000
  9. - PGID=1000
  10. - TZ=Europe/London
  11. - UMASK_SET=<022> #optional
  12. volumes:
  13. - /path/to/library:/config
  14. - /path/to/tvshows:/data/tvshows
  15. - /path/to/movies:/data/movies
  16. volumes:
  17. - /path/for/transcoding:/transcode #optional
  18. ports:
  19. - 8096:8096
  20. ports:
  21. - 8920:8920 #optional
  22. devices:
  23. - /dev/dri:/dev/dri #optional
  24. restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement