Skip to main content

Container Map

The container map controls which containers are enabled, if they are accessible via Traefik, protected by Authentik, integrated with Homepage, and the proxy rule used to access the container if behind Traefik.

By default, the container map is in inventory/group_vars/all/container_map.yml

note

If a key (such as sonarr:) does not match an available container, an error may be thrown.

Adding New Containers

See the Updating docs.

Notes

If both Jellyfin and Emby are enabled, then Emby will be available on ports 8097 and 8921 (if ports are being exposed for both Jellyfin and Emby)

Map

Service NameEnabled by DefaultContainer NameHost Port (if enabled)Container PortAccessible via Traefik
Plexplex3240032400
Sonarrsonarr89898989
Sonarr (Separate 4K instance if enabled)sonarr-4k89908989
Radarrradarr78787878
Radarr (Separate 4K instance if enabled)radarr-4k78797878
Prowlarrprowlarr96969696
Overseerroverseerr50555055
Requestrrrequestrr45454545
Transmission UI Proxytransmission-proxy80818080
Transmission (HTTP Proxy)transmission88888888
Transmission (RPC)transmission90919091
Portainerportainer90009000
Bazarrbazarr67676767
Tautullitautulli81818181
Traefiktraefik80, 8080, 44380, 8080, 443
Nzbgetnzbget67896789
Sabnzbsabnzb80828080
Authentikauthentik-server9001 and 94439000 and 9443
Tdarrtdarr8265 and 82668265 and 8266
HomePagehomepage30003000
Flaresolverrflaresolverr81918191
Uptime Kumauptime-kuma30013001
Heimdallheimdall8000 and 844380 and 443
Readarrreadarr87878787
Kavitakavita50005000
Calibrecalibre8083, 8182, 80848080, 8181, 8081
Jellyfinjellyfin8096, 8920, 7359, 19008096, 8920, 7359, 1900
Embyemby8096, 89208096, 8920
Maintainerrmaintainerr62466246
Lidarrlidarr86868686
Autobrrautobrr74747474
Notifiarrnotifiarr54545454
Speedtest-Trackerspeedtest8090, 84448080, 8443
tinyMediaManagertmm5900, 40005900, 4000
PASTApasta808580
Wizarrwizarr56905690
Jellyseerrjellyseerr50565055

Container Map Entry Example

Here is an example of a container map entry for Sonarr:

...
sonarr: # Do not modify this value, this is the "key"
enabled: yes # Enables or disables the container named above
proxy_host_rule: sonarr # The subdomain that will route to the container (based on HTTP Host header)
directory: yes # Do not modify, controls if a container "app" folder is created
traefik: yes # If container should be accessible via Traefik (such as `<proxy_host_rule>.<domain>`)
authentik: no # If container should be protected by Authentik
authentik_provider_type: proxy # The type of integration with Authentik. Likely `proxy` unless you know it's `oauth2`
expose_to_public: no # If the container should be exposed to public (0.0.0.0/0) traffic
homepage: yes # If the integration with the Homepage container should be enabled
homepage_stats: no # Enables advanced stats for the container within Homepage (CPU, RAM, RX/TX)
...