mirror of
https://github.com/CoolnsX/selfhost_podman.git
synced 2025-12-20 03:45:16 +05:30
first commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.env
|
||||
23
starrs/bazarr.container
Normal file
23
starrs/bazarr.container
Normal file
@@ -0,0 +1,23 @@
|
||||
[Unit]
|
||||
Description=Bazarr Container
|
||||
|
||||
[Container]
|
||||
Pod=starrs.pod
|
||||
ContainerName=bazarr
|
||||
Image=lscr.io/linuxserver/bazarr:latest
|
||||
|
||||
# Enable auto-update container
|
||||
AutoUpdate=registry
|
||||
EnvironmentFile=./.env
|
||||
|
||||
Volume=%h/podman/starrs/bazarr:/config
|
||||
Volume=${DATA}/media:/data
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=%h/.config/containers/systemd/starrs/.env
|
||||
Restart=always
|
||||
TimeoutStartSec=300
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
4
starrs/env.example
Normal file
4
starrs/env.example
Normal file
@@ -0,0 +1,4 @@
|
||||
PUID=1000 # set to 0 to run with podman rootless without uidmap
|
||||
PGID=1000 # set to 0 to run with podman rootless without uidmap
|
||||
TZ=Asia/Kolkata
|
||||
DATA=/path/to/data
|
||||
26
starrs/jellyfin.container
Normal file
26
starrs/jellyfin.container
Normal file
@@ -0,0 +1,26 @@
|
||||
[Unit]
|
||||
Description=Jellyfin Container
|
||||
|
||||
[Container]
|
||||
Pod=starrs.pod
|
||||
ContainerName=jellyfin
|
||||
Image=lscr.io/linuxserver/jellyfin:latest
|
||||
|
||||
# Enable auto-update container
|
||||
AutoUpdate=registry
|
||||
EnvironmentFile=./.env
|
||||
|
||||
Volume=%h/podman/starrs/jellyfin:/config
|
||||
Volume=${DATA}/media:/data
|
||||
|
||||
# gpu
|
||||
AddDevice=/dev/dri
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=%h/.config/containers/systemd/starrs/.env
|
||||
Restart=always
|
||||
TimeoutStartSec=300
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
23
starrs/prowlarr.container
Normal file
23
starrs/prowlarr.container
Normal file
@@ -0,0 +1,23 @@
|
||||
[Unit]
|
||||
Description=Prowlarr Container
|
||||
|
||||
[Container]
|
||||
Pod=starrs.pod
|
||||
ContainerName=prowlarr
|
||||
Image=lscr.io/linuxserver/prowlarr:latest
|
||||
|
||||
# Enable auto-update container
|
||||
AutoUpdate=registry
|
||||
EnvironmentFile=./.env
|
||||
|
||||
Volume=%h/podman/starrs/prowlarr:/config
|
||||
Volume=${DATA}:/data
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=%h/.config/containers/systemd/starrs/.env
|
||||
Restart=always
|
||||
TimeoutStartSec=300
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
23
starrs/radarr.container
Normal file
23
starrs/radarr.container
Normal file
@@ -0,0 +1,23 @@
|
||||
[Unit]
|
||||
Description=Radarr Container
|
||||
|
||||
[Container]
|
||||
Pod=starrs.pod
|
||||
ContainerName=radarr
|
||||
Image=lscr.io/linuxserver/radarr:latest
|
||||
|
||||
# Enable auto-update container
|
||||
AutoUpdate=registry
|
||||
EnvironmentFile=./.env
|
||||
|
||||
Volume=%h/podman/starrs/radarr:/config
|
||||
Volume=${DATA}:/data
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=%h/.config/containers/systemd/starrs/.env
|
||||
Restart=always
|
||||
TimeoutStartSec=300
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
23
starrs/sonarr.container
Normal file
23
starrs/sonarr.container
Normal file
@@ -0,0 +1,23 @@
|
||||
[Unit]
|
||||
Description=Sonarr Container
|
||||
|
||||
[Container]
|
||||
Pod=starrs.pod
|
||||
ContainerName=sonarr
|
||||
Image=lscr.io/linuxserver/sonarr:latest
|
||||
|
||||
# Enable auto-update container
|
||||
AutoUpdate=registry
|
||||
EnvironmentFile=./.env
|
||||
|
||||
Volume=%h/podman/starrs/sonarr:/config
|
||||
Volume=${DATA}:/data
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=%h/.config/containers/systemd/starrs/.env
|
||||
Restart=always
|
||||
TimeoutStartSec=300
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
15
starrs/starrs.pod
Normal file
15
starrs/starrs.pod
Normal file
@@ -0,0 +1,15 @@
|
||||
[Unit]
|
||||
Description=STARRs Pod (Radarr, Sonarr, Bazarr, Prowlarr, Transmission, Jellyfin)
|
||||
|
||||
[Pod]
|
||||
PodName=starrs
|
||||
PublishPort=7878:7878
|
||||
PublishPort=8989:8989
|
||||
PublishPort=6767:6767
|
||||
PublishPort=9696:9696
|
||||
PublishPort=9091:9091
|
||||
PublishPort=51413:51413
|
||||
PublishPort=51413:51413/udp
|
||||
PublishPort=8096:8096
|
||||
PublishPort=7359:7359/udp
|
||||
PublishPort=1900:1900/udp
|
||||
24
starrs/transmission.container
Normal file
24
starrs/transmission.container
Normal file
@@ -0,0 +1,24 @@
|
||||
[Unit]
|
||||
Description=Transmission Container
|
||||
|
||||
[Container]
|
||||
Pod=starrs.pod
|
||||
ContainerName=transmission
|
||||
Image=lscr.io/linuxserver/transmission:latest
|
||||
|
||||
# Enable auto-update container
|
||||
AutoUpdate=registry
|
||||
EnvironmentFile=./.env
|
||||
|
||||
Volume=%h/podman/starrs/transmission:/config
|
||||
Volume=${DATA}/downloads:/downloads
|
||||
Volume=${DATA}/watch:/watch
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=%h/.config/containers/systemd/starrs/.env
|
||||
Restart=always
|
||||
TimeoutStartSec=300
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
Reference in New Issue
Block a user