diff --git a/infrastructure/portainer/docker-compose.yaml b/infrastructure/portainer/docker-compose.yaml new file mode 100644 index 0000000..00e4aee --- /dev/null +++ b/infrastructure/portainer/docker-compose.yaml @@ -0,0 +1,16 @@ +version: "3" + + +services: + portainer: + image: portainer/portainer-ce:latest + ports: + - 9443:9443 + volumes: + - data:/data + - /var/run/docker.sock:/var/run/docker.sock + restart: unless-stopped + + +volumes: + data: \ No newline at end of file