Skip to content

Instantly share code, notes, and snippets.

@arthursvpb
Last active October 25, 2023 09:01
Show Gist options
  • Save arthursvpb/34122d29c7e04c80bf1c18d0f791862d to your computer and use it in GitHub Desktop.
Save arthursvpb/34122d29c7e04c80bf1c18d0f791862d to your computer and use it in GitHub Desktop.
Portainer GUI .docker-compose.yml
# Run with: docker compose up -d
version: '3'
services:
portainer:
image: portainer/portainer-ce
container_name: portainer
ports:
- "9000:9000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
restart: always
volumes:
portainer_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment