Created
February 13, 2020 21:50
-
-
Save bdelafaire/eb0a71ce940155fbc72ff5e6dc2b4e08 to your computer and use it in GitHub Desktop.
portainer service in docker-compose
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
version: "3" | |
services: | |
portainer: | |
image: portainer/portainer | |
container_name: portainer | |
hostname: portainer | |
ports: | |
- 9001:9000 | |
- 8000:8000 | |
volumes: | |
- ./portainer:/data | |
- /var/run/docker.sock:/var/run/docker.sock | |
networks: | |
net_integration: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment