Skip to content

Instantly share code, notes, and snippets.

@klaasnicolaas
Last active November 12, 2025 09:35
Show Gist options
  • Select an option

  • Save klaasnicolaas/fb99fcc4d44ea5ac967e18e82b95b529 to your computer and use it in GitHub Desktop.

Select an option

Save klaasnicolaas/fb99fcc4d44ea5ac967e18e82b95b529 to your computer and use it in GitHub Desktop.
Run Portainer in Docker
---
services:
portainer:
image: portainer/portainer-ce:2.35.0
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:
- 9001:9000
volumes:
portainer_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment