Convert compose files to yaml

toml conversion stopped working, don't want to fix it
This commit is contained in:
Marko Korhonen 2024-11-04 10:27:12 +02:00
parent 9014f87dfd
commit 037967efd7
49 changed files with 904 additions and 773 deletions

View file

@ -1,10 +0,0 @@
[volumes]
config = {}
[services.mumble]
container_name = "mumble"
image = "phlak/mumble"
environment = ["TZ=Europe/Helsinki"]
network_mode = "host"
volumes = ["config:/etc/mumble", "/etc/localtime:/etc/localtime:ro"]
restart = "unless-stopped"

View file

@ -0,0 +1,13 @@
volumes:
config: {}
services:
mumble:
container_name: mumble
image: phlak/mumble
environment:
- TZ=Europe/Helsinki
network_mode: host
volumes:
- config:/etc/mumble
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped