Last active
October 25, 2023 09:01
-
-
Save arthursvpb/34122d29c7e04c80bf1c18d0f791862d to your computer and use it in GitHub Desktop.
Portainer GUI .docker-compose.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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