Title logo
linuxserver/emby.

42,931,392 198 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/emby
Build Time 02 May 2024 21:46:39
Base Image lsiobase/ubuntu:bionic
Category Home Media
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
beta 4.9.0-beta 02 May 2024 at 21:46:38
latest 4.8.5 02 May 2024 at 21:38:11

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  emby:
    image: linuxserver/emby:4.8.5
    container_name: emby
    restart: unless-stopped
    environment:
      - UMASK_SET # umask setting of Emby, default if left unset is 022.
      - TZ # Specify a timezone to use (e.g. Europe/London)
      - PUID # ID of user
      - PGID # ID of the group to assign to managed files
    volumes:
      - /host/path/to/transcode:/transcode # Path for transcoding folder, optional.
      - /host/path/to/opt/vc/lib:/opt/vc/lib # Path for Raspberry Pi OpenMAX libs optional.
      - /host/path/to/data/tvshows:/data/tvshows # Media goes here. Add as many as needed e.g. /data/movies, /data/tv, etc.
      - /host/path/to/data/movies:/data/movies # Media goes here. Add as many as needed e.g. /data/movies, /data/tv, etc.
      - /host/path/to/config:/config # Emby data storage location. This can grow very large, 50gb+ is likely for a large collection.
    ports:
      - 8920:8920/tcp # Application HTTPS port (optional)
      - 8096:8096/tcp # Application HTTP port
    devices:
      - /dev/video12:/dev/video12 # Only needed if you want to use your Raspberry Pi V4L2 video encoding.
      - /dev/video11:/dev/video11 # Only needed if you want to use your Raspberry Pi V4L2 video encoding.
      - /dev/vchiq:/dev/vchiq # Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio).
      - /dev/dri:/dev/dri # Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi).

CLI

docker create \
  --name=emby \
  -e UMASK_SET `# umask setting of Emby, default if left unset is 022.` \
  -e TZ `# Specify a timezone to use (e.g. Europe/London)` \
  -e PUID `# ID of user` \
  -e PGID `# ID of the group to assign to managed files` \
  -v /host/path/to/transcode:/transcode `# Path for transcoding folder, optional.` \
  -v /host/path/to/opt/vc/lib:/opt/vc/lib `# Path for Raspberry Pi OpenMAX libs optional.` \
  -v /host/path/to/data/tvshows:/data/tvshows `# Media goes here. Add as many as needed e.g. /data/movies, /data/tv, etc.` \
  -v /host/path/to/data/movies:/data/movies `# Media goes here. Add as many as needed e.g. /data/movies, /data/tv, etc.` \
  -v /host/path/to/config:/config `# Emby data storage location. This can grow very large, 50gb+ is likely for a large collection.` \
  -p 8920:8920/tcp `# Application HTTPS port (optional)` \
  -p 8096:8096/tcp `# Application HTTP port` \
  --device /dev/video12:/dev/video12 `# Only needed if you want to use your Raspberry Pi V4L2 video encoding.` \
  --device /dev/video11:/dev/video11 `# Only needed if you want to use your Raspberry Pi V4L2 video encoding.` \
  --device /dev/vchiq:/dev/vchiq `# Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio).` \
  --device /dev/dri:/dev/dri `# Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi).` \
  --restart unless-stopped \
  linuxserver/emby:4.8.5