mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
36 lines
969 B
YAML
36 lines
969 B
YAML
version: '3'
|
|
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ee:2.23.0-alpine # or use community edition via portainer/portainer-ce
|
|
container_name: portainer-ee # may rename to portainer-ce if community edition is used
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- portainer_data:/data
|
|
ports:
|
|
- 9443:9443
|
|
expose:
|
|
- 9443
|
|
- 9000
|
|
- 8000
|
|
#networks:
|
|
# - proxy
|
|
#labels:
|
|
# - traefik.enable=true
|
|
# - traefik.http.routers.portainer.rule=Host(`portainer.example.com`)
|
|
# - traefik.http.services.portainer.loadbalancer.server.port=9000
|
|
# - traefik.docker.network=proxy
|
|
# # Part for local lan services only
|
|
# - traefik.http.routers.portainer.middlewares=local-ipwhitelist@file
|
|
|
|
#networks:
|
|
# proxy:
|
|
# external: true
|
|
|
|
volumes:
|
|
portainer_data:
|
|
external: true
|
|
name: portainer_data
|