13 lines
277 B
YAML
13 lines
277 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
portainer:
|
|
container_name: portainer
|
|
ports:
|
|
- '19000:9000'
|
|
volumes:
|
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
|
- './portainer/data:/data'
|
|
privileged: false
|
|
restart: always
|
|
image: portainer/portainer |