From 52d26b8f8143f6e1780bb560a984f7e02ff16e17 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Thu, 20 Mar 2025 15:34:15 -0400 Subject: [PATCH] feat: Moves config and icons to just use a bind mount. --- compose.yaml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/compose.yaml b/compose.yaml index b42d28d..8e187a9 100644 --- a/compose.yaml +++ b/compose.yaml @@ -6,8 +6,8 @@ services: restart: unless-stopped user: ${USER_UID}:${USER_GID} volumes: - - homarr_config:/app/data/configs - - homarr_icons:/app/public/icons + - ./config:/app/data/configs + - ./icons:/app/public/icons networks: - proxy ports: @@ -19,18 +19,18 @@ networks: proxy: external: true -volumes: - homarr_config: - driver_opts: - type: nfs - o: "addr=${NFS_ADDR},nolock,soft,rw" - device: "${HOMARR_CONFIG_MNT:-:/mnt/homarr/config}" - labels: - dev.housh.description: "Homarr configuration volume." - homarr_icons: - driver_opts: - type: nfs - o: "addr=${NFS_ADDR},nolock,soft,rw" - device: "${HOMARR_ICONS_MNT:-:/var/nfs/shared/docker/homarr/icons}" - labels: - dev.housh.description: "Homarr icons volume." +# volumes: +# homarr_config: +# driver_opts: +# type: nfs +# o: "addr=${NFS_ADDR},nolock,soft,rw" +# device: "${HOMARR_CONFIG_MNT:-:/mnt/homarr/config}" +# labels: +# dev.housh.description: "Homarr configuration volume." +# homarr_icons: +# driver_opts: +# type: nfs +# o: "addr=${NFS_ADDR},nolock,soft,rw" +# device: "${HOMARR_ICONS_MNT:-:/var/nfs/shared/docker/homarr/icons}" +# labels: +# dev.housh.description: "Homarr icons volume."