You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
416 B

  1. version: "3.2"
  2. services:
  3. portainer:
  4. container_name: ${PORTAINER_CONTAINER_NAME:-portainer}
  5. image: portainer/portainer-ce:${PORTAINER_VERSION:-latest}
  6. restart: always
  7. ports:
  8. - ${PORTAINER_HOST_IP_ADDRESS:-127.0.0.1}:${PORTAINER_HOST_PORT:-9000}:9000
  9. volumes:
  10. - /var/run/docker.sock:/var/run/docker.sock
  11. - data:/data
  12. volumes:
  13. data: