fd3d2affe7
edu_master glance n8n nextcloud portainer traefik gitignore comments
31 lines
810 B
YAML
31 lines
810 B
YAML
services:
|
|
portainer:
|
|
container_name: portainer
|
|
image: portainer/portainer-ce:lts
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./portainer_data:/data
|
|
ports:
|
|
- 9443:9443
|
|
# - 8000:8000 # Remove if you do not intend to use Edge Agents
|
|
networks:
|
|
- traefik-proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.docker.network=traefik-proxy"
|
|
- glance.name=Portainer
|
|
# - glance.icon=si:portainer
|
|
- glance.url=https://portainer.forust.xyz/
|
|
- glance.description=Portainer is a lightweight management UI which allows you to easily manage your Docker environments.
|
|
|
|
volumes:
|
|
portainer_data:
|
|
name: portainer_data
|
|
|
|
networks:
|
|
default:
|
|
name: portainer_network
|
|
traefik-proxy:
|
|
external: true
|