diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 17:09:04 +0200 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 17:09:04 +0200 |
commit | bd967b68a274f79a0c5f351d228ff9279e0e9a89 (patch) | |
tree | d207feaf70f34c7c9468e83ef43dd9e0fc169e35 /portainer/compose.yaml |
Initial commit
Diffstat (limited to 'portainer/compose.yaml')
-rw-r--r-- | portainer/compose.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/portainer/compose.yaml b/portainer/compose.yaml new file mode 100644 index 0000000..6b6abbd --- /dev/null +++ b/portainer/compose.yaml @@ -0,0 +1,15 @@ +services: + portainer-ce: + image: portainer/portainer-ce:2.27.6 + ports: + - 10.0.0.1:8000:8000 + - 10.0.0.1:9443:9443 + container_name: portainer + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - portainer_data:/data +volumes: + portainer_data: + external: true +networks: {} |