Created
September 9, 2017 16:05
-
-
Save ksatirli/af47ff7661a4709869cb4109ba8eb903 to your computer and use it in GitHub Desktop.
Portainer: start
This file contains 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
#!/bin/bash | |
docker \ | |
run \ | |
--name portainer \ | |
--privileged \ | |
--detach \ | |
-p 9000:9000 \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
-v ~/Sites/docker-data/portainer/:/data \ | |
portainer/portainer \ | |
--no-auth \ | |
-H unix:///var/run/docker.sock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Portainer is available portainer.io; default installation instructions are available via portainer.io/install.html.