diff --git a/Portainer/portainer.json b/Portainer/portainer.json new file mode 100644 index 0000000..6cb7c2f --- /dev/null +++ b/Portainer/portainer.json @@ -0,0 +1,21 @@ +{ + "version": "3", + "services": { + "portainer": { + "image": "portainer/portainer-ce:latest", + "container_name": "portainer", + "restart": "unless-stopped", + "security_opt": [ + "no-new-privileges:true" + ], + "volumes": [ + "/etc/localtime:/etc/localtime:ro", + "/var/run/docker.sock:/var/run/docker.sock:ro", + "./portainer-data:/data" + ], + "ports": [ + "9000:9000" + ] + } + } +} \ No newline at end of file