Skip to content

Instantly share code, notes, and snippets.

@skobba
Last active October 18, 2019 07:18
Show Gist options
  • Select an option

  • Save skobba/49a16dd5872579014e5cc7b9d2b23a95 to your computer and use it in GitHub Desktop.

Select an option

Save skobba/49a16dd5872579014e5cc7b9d2b23a95 to your computer and use it in GitHub Desktop.
portainer
#!/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