mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
23 lines
384 B
YAML
23 lines
384 B
YAML
# https://www.portainer.io/
|
|
|
|
version: '3.3'
|
|
|
|
name: portainer
|
|
|
|
services:
|
|
portainer:
|
|
container_name: 'portainer'
|
|
ports:
|
|
- '9000:9000'
|
|
volumes:
|
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
|
- './portainer_data:/data'
|
|
image: portainer/portainer-ce:latest
|
|
restart: 'unless-stopped'
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|