--- #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: