Renamed all docker-compose files to podman-compose
Just because I can
This commit is contained in:
parent
d546922e1e
commit
a55c7b1f99
19 changed files with 18 additions and 2 deletions
17
tvheadend/podman-compose.toml
Normal file
17
tvheadend/podman-compose.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[services.tvheadend]
|
||||
image = "linuxserver/tvheadend"
|
||||
container_name = "tvheadend"
|
||||
environment = ["TZ=Europe/Helsinki", "PUID=1000", "PGID=985"]
|
||||
volumes = [
|
||||
"~/data/tvheadend:/config",
|
||||
"/mnt/Storage/Media/PVR:/recordings",
|
||||
"/mnt/Storage/picons:/picons",
|
||||
"/etc/localtime:/etc/localtime:ro",
|
||||
]
|
||||
ports = ["9981:9981", "9982:9982"]
|
||||
devices = ["/dev/dvb:/dev/dvb"]
|
||||
restart = "unless-stopped"
|
||||
networks = ["proxy"]
|
||||
|
||||
[networks.proxy]
|
||||
external = true
|
Reference in a new issue