diff --git a/portainer.yaml b/portainer.yaml index e69de29..9fa19b1 100644 --- a/portainer.yaml +++ b/portainer.yaml @@ -0,0 +1,19 @@ +--- +#version: '3.7' +services: + portainer: + image: portainer/portainer-ce:latest + restart: always + command: -H unix:///var/run/docker.sock + ports: + - 9000:9000 + volumes: + - /etc/localtime:/etc/localtime:ro + - /etc/timezone:/etc/timezone:ro + - /var/run/docker.sock:/var/run/docker.sock:ro + - ./dataportainer:/data + environment: + TZ: "Europe/Paris" + +volumes: + dataportainer: \ No newline at end of file