Jump to content

Emby in Podman


Recommended Posts

Posted

Is there a tutorial for Emby to be added to Podman? After doing research I decided that for my containers

I did not want Docker with Portainer. One less layer and rootless. 

Posted

Hi, is there an Emby package for it?

Posted

Should be the same package as for Docker.

Posted

OK, would the normal docker install process be sufficient then?

Posted
On 9/8/2026 at 8:16 AM, IAmHugh said:

Is there a tutorial for Emby to be added to Podman? After doing research I decided that for my containers

I did not want Docker with Portainer. One less layer and rootless. 

Hi, with you have podman and podman-compose, create this compose.yaml:

services:
  emby:
    image: docker.io/emby/embyserver@sha256:3aafff933d3f28d23ed0bc201022abe71c0aa80deb17177566c726b9bbc686c6
    container_name: embyserver
    network_mode: host
    environment:
      - UID=1000
      - GID=100
      - GIDLIST=100
      - NVIDIA_VISIBLE_DEVICES=all
      - NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
    volumes:
      - ./emby/data:/config:z
      - /mnt/external_disk:/mnt/:rw
    devices:
      - nvidia.com/gpu=all
    restart: unless-stopped

I has runnning this compose, for a long time (remember this compose in volumes setup for my homelab, in you case check volume setting).

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...