From f8c43f9709adae9d1399630ec5943d5705b0b6e2 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sat, 26 Aug 2023 13:36:01 +0100 Subject: [PATCH] chore: remove shared volume Now that the shared volume is no longer needed it is removed from the docker compose file. --- templates/compose/docker-compose.yaml.gotmpl | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/templates/compose/docker-compose.yaml.gotmpl b/templates/compose/docker-compose.yaml.gotmpl index 2a8281b..24f2bec 100644 --- a/templates/compose/docker-compose.yaml.gotmpl +++ b/templates/compose/docker-compose.yaml.gotmpl @@ -19,10 +19,6 @@ networks: config: - subnet: "{{ .DockerNetworkSubnet }}" -volumes: - traefik-shared: - name: "traefik-config-shared-volume" - services: # -- Traffic flow -- traefik: @@ -68,10 +64,6 @@ services: restart: "always" volumes: {{- template "defaultVolumes" }} - # Shared volume - - type: "volume" - source: "traefik-shared" - target: "{{ .Traefik.SharedMountPoint }}" # Forgejo data volume - type: "bind" source: "{{ .Forgejo.DataHostDirectory }}" @@ -92,10 +84,6 @@ services: restart: "always" volumes: {{- template "defaultVolumes" }} - # Shared volume - - type: "volume" - source: "traefik-shared" - target: "{{ .Traefik.SharedMountPoint }}" # Go To Social data volume - type: "bind" source: "{{ .GoToSocial.DataHostDirectory }}" @@ -131,10 +119,6 @@ services: restart: "always" volumes: {{- template "defaultVolumes" }} - # Shared volume - - type: "volume" - source: "traefik-shared" - target: "{{ .Traefik.SharedMountPoint }}" # Woodpecker data volume - type: "bind" source: "{{ .Woodpecker.DataHostDirectory }}"