🚀 Initial commit: Dokploy Dashboard Pro with container controls

This commit is contained in:
2025-06-22 13:32:57 +02:00
parent 7950c13085
commit 7d2c8b71a3
5 changed files with 92 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3.8'
services:
dashboard:
build: .
ports:
- "3000:3000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- NODE_ENV=production
networks:
- dokploy_default
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashboard.rule=Host(`dashboard.yourdomain.com`)"
- "traefik.http.services.dashboard.loadbalancer.server.port=3000"
- "traefik.http.routers.dashboard.tls.certResolver=letsencrypt"
networks:
dokploy_default:
external: true