From f0d63d48c36632dd063ec635acb648fd954f5d4d Mon Sep 17 00:00:00 2001 From: duffyduck Date: Tue, 10 Feb 2026 15:04:22 +0100 Subject: [PATCH] added host expose variant --- docker-compose-host-variant.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker-compose-host-variant.yml diff --git a/docker-compose-host-variant.yml b/docker-compose-host-variant.yml new file mode 100644 index 0000000..189a745 --- /dev/null +++ b/docker-compose-host-variant.yml @@ -0,0 +1,21 @@ +services: + openbox-rdp: + build: . + container_name: openbox-rdp + ports: + - "3389:3389" + - "5900:5900" + network_mode: host + environment: + - FIREFOX_HOMEPAGE=${FIREFOX_HOMEPAGE} + - RDP_PASSWORD=${RDP_PASSWORD} + volumes: + - ./firefox-data:/home/openbox/.mozilla + restart: unless-stopped +networks: + mguard-network: + name: mguard_network + driver: bridge + ipam: + config: + - subnet: 172.20.0.0/16 \ No newline at end of file