forked from Hithomelabs/ci-runner-test
17 lines
375 B
YAML
17 lines
375 B
YAML
version: "3.6"
|
|
services:
|
|
portainer:
|
|
image: "portainer/portainer-ce:latest"
|
|
container_name: "portainer"
|
|
ports:
|
|
- "8000:8000"
|
|
- "9443:9443"
|
|
restart: "always"
|
|
volumes:
|
|
- "/home/${USER}/HomeLabDocker:/envhome"
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
- "portainer_data:/data"
|
|
volumes:
|
|
portainer_data:
|
|
external: true
|