Fix: Adjust Docker network configuration

This commit is contained in:
gpt-engineer-app[bot]
2025-10-20 21:33:29 +00:00
parent bdb1b75f36
commit 9e6e667981

View File

@@ -6,8 +6,7 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: docker-webui container_name: docker-webui
ports: network_mode: host
- "8080:8080"
environment: environment:
- TZ=${TZ:-Europe/Copenhagen} - TZ=${TZ:-Europe/Copenhagen}
volumes: volumes:
@@ -16,9 +15,3 @@ services:
# Mount proc for host metrics (read-only) # Mount proc for host metrics (read-only)
- /proc:/host/proc:ro - /proc:/host/proc:ro
restart: unless-stopped restart: unless-stopped
networks:
- docker-webui-network
networks:
docker-webui-network:
driver: bridge