19 lines
390 B
YAML
19 lines
390 B
YAML
|
|
# portainer — container management UI
|
||
|
|
# Networks: mgmt
|
||
|
|
|
||
|
|
services:
|
||
|
|
portainer:
|
||
|
|
image: portainer/portainer-ce:2.21.4
|
||
|
|
restart: unless-stopped
|
||
|
|
networks: [mgmt]
|
||
|
|
volumes:
|
||
|
|
- portainer-data:/data
|
||
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||
|
|
# TODO: edge-agent on each site connected back to this central portainer
|
||
|
|
|
||
|
|
networks:
|
||
|
|
mgmt:
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
portainer-data:
|