From 6e2443d51e4b502b22ba1a75271f834a14ae5a60 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 25 Apr 2021 23:33:49 +0300
Subject: [PATCH] Allow Nginx access to the host network.

For proxying Kodi.
---
 docker-compose.yml | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/docker-compose.yml b/docker-compose.yml
index 14f76f3..0f8bd3f 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -5,14 +5,9 @@ services:
     build:
       context: ./
     # command: ["nginx", "-g", "daemon off;"]
-    hostname: &hostname kodi.shore.co.il
     networks:
-      default:
-        aliases:
-          - *hostname
-    ports:
-      - '80:80'
-      - '443:443'
+      - default
+      - host
     restart: always
     volumes:
       - '/var/www/www.shore.co.il/.well-known/acme-challenge:/var/www/www.shore.co.il/.well-known/acme-challenge:ro'
@@ -41,3 +36,6 @@ services:
 networks:
   default:
     name: shore
+  host:
+    external: true
+    name: host
-- 
GitLab