IAmHugh 78 Posted Tuesday at 11:16 AM Posted Tuesday at 11:16 AM 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.
Luke 43075 Posted Tuesday at 03:26 PM Posted Tuesday at 03:26 PM Hi, is there an Emby package for it?
IAmHugh 78 Posted Tuesday at 06:08 PM Author Posted Tuesday at 06:08 PM Should be the same package as for Docker.
Luke 43075 Posted yesterday at 03:56 PM Posted yesterday at 03:56 PM OK, would the normal docker install process be sufficient then?
vonnatur 1 Posted 48 minutes ago Posted 48 minutes ago 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). 1
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now