diff --git a/portainer.yaml b/portainer.yaml new file mode 100644 index 0000000..afc6d8c --- /dev/null +++ b/portainer.yaml @@ -0,0 +1,13 @@ +services: + portainer: + image: portainer/portainer-ce:latest + container_name: portainer + ports: + - 65000:8000 + - 65001:9443 + volumes: + - portainer_data:/data + - /var/run/docker.sock:/var/run/docker.sock + restart: unless-stopped +volumes: + portainer_data: \ No newline at end of file