Last active
July 26, 2019 09:02
-
-
Save jodykpw/911ad0b6d0fb6ed9f6c06fb9254d7d09 to your computer and use it in GitHub Desktop.
Portainer Management, Docker User Interface
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: | |
container_name: portainer | |
restart: always | |
image: portainer/portainer | |
network_mode: bridge | |
ports: | |
- "9000:9000" | |
environment: | |
TZ: "Asia/Hong_Kong" | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
- data:/data | |
volumes: | |
data: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment