chore: remove shared volume

Now that the shared volume is no longer needed it is removed from the
docker compose file.
This commit is contained in:
Dan Anglin 2023-08-26 13:36:01 +01:00
parent ba9a865b55
commit f8c43f9709
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -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 }}"