update docker compose

Updated port mapping for Nginx proxy and removed unused ports.
This commit is contained in:
Charmunk 2025-10-31 10:57:21 -04:00 committed by GitHub
parent f18cf813e8
commit ed8b8336c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,10 +5,7 @@ services:
build: .
privileged: true # Required for Docker-in-Docker
ports:
- "80:80" # Nginx proxy
- "3000:3000" # Backend API
- "5173:5173" # Frontend
- "2376:2376" # Docker daemon API
- "2593:80" # Nginx proxy
volumes:
- docker-data:/var/lib/docker # Docker storage volume
environment:
@ -16,8 +13,5 @@ services:
- DOCKER_HOST=unix:///var/run/docker.sock
- DOCKER_TLS_CERTDIR=""
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway" # Enable access to Docker host ports
volumes:
docker-data:
docker-data: