initial commit

This commit is contained in:
Carneiro 2025-02-27 10:34:03 -03:00
commit 39294d21ae
1 changed files with 23 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@ -0,0 +1,23 @@
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
volumes:
- portainer_data:/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
- traefik-public
labels:
traefik.enable: true
traefik.http.routers.portainer.rule: Host(`docker.alice.ufsj.edu.br`)
traefik.http.routers.portainer.entrypoints: websecure
traefik.http.services.portainer.loadBalancer.server.port: 9000
traefik.http.routers.portainer.middlewares: 'authelia@docker'
volumes:
portainer_data:
networks:
traefik-public:
external: true