Skip to content

Instantly share code, notes, and snippets.

@jodykpw
Last active July 26, 2019 09:02
Show Gist options
  • Save jodykpw/911ad0b6d0fb6ed9f6c06fb9254d7d09 to your computer and use it in GitHub Desktop.
Save jodykpw/911ad0b6d0fb6ed9f6c06fb9254d7d09 to your computer and use it in GitHub Desktop.
Portainer Management, Docker User Interface
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