Last active
October 18, 2019 07:18
-
-
Save skobba/49a16dd5872579014e5cc7b9d2b23a95 to your computer and use it in GitHub Desktop.
portainer
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
| #!/bin/sh | |
| # autostart (restart unless-stopped) | |
| docker run -dit --restart unless-stopped -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer | |
| # autostart (restart always) | |
| docker run -dit --restart always -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer | |
| # docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment