mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2025-08-14 01:12:22 +00:00
16 lines
336 B
YAML
16 lines
336 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
portainer:
|
||
|
image: portainer/portainer-ce:latest
|
||
|
container_name: portainer
|
||
|
ports:
|
||
|
- 8000:8000
|
||
|
- 9443:9443
|
||
|
- 9000:9000 # for http
|
||
|
volumes:
|
||
|
- portainer_data:/data
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
portainer_data:
|