From 3c3cf267b4b28cb54881e817ff9266da12f3dd34 Mon Sep 17 00:00:00 2001 From: bdizen Date: Tue, 26 Nov 2024 15:26:48 +0200 Subject: [PATCH] Expose container to host tailscale net --- config/services.yaml | 2 +- docker-compose.yaml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config/services.yaml b/config/services.yaml index b46ba6c..88c1972 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -14,7 +14,7 @@ href: http://deluge/ widget: type: deluge - url: http://192.168.1.100 + url: http://deluge password: 85934212 # webui password - Home: diff --git a/docker-compose.yaml b/docker-compose.yaml index 8d9cf8c..fc0f1c0 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -2,9 +2,8 @@ services: homepage: image: ghcr.io/gethomepage/homepage:latest container_name: homepage - ports: - - 3000:3000 volumes: - ./config:/app/config # Make sure your local config directory exists - ./assets/icons:/app/public/icons # Make sure your local config directory exists - - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations \ No newline at end of file + - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations + network_mode: "host" \ No newline at end of file