summaryrefslogtreecommitdiff
path: root/portainer/compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'portainer/compose.yaml')
-rw-r--r--portainer/compose.yaml15
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: {}