Convert rest of docker-compose files to TOML

This commit is contained in:
Marko Korhonen 2022-02-26 13:25:54 +02:00
parent 37529aa38a
commit d5d3f8a975
26 changed files with 479 additions and 529 deletions

View file

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

View file

@ -1,12 +0,0 @@
services:
mumble:
container_name: mumble
image: phlak/mumble
user: "1000:985"
environment:
- TZ=Europe/Helsinki
network_mode: host
volumes:
- /docker/mumble:/etc/mumble
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped