mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 13:25:26 +02:00
17 lines
316 B
YAML
17 lines
316 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
portainer:
|
||
|
image: portainerci/portainer:$PORTAINER_TAG
|
||
|
command: -H unix:///var/run/docker.sock
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 9000:9000
|
||
|
- 8000:8000
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
- portainer_data:/data
|
||
|
|
||
|
volumes:
|
||
|
portainer_data:
|