Skip to content

Instantly share code, notes, and snippets.

@abelsilva
Created November 25, 2015 21:56
Show Gist options
  • Save abelsilva/4eb7004d226ecf0623d8 to your computer and use it in GitHub Desktop.
Save abelsilva/4eb7004d226ecf0623d8 to your computer and use it in GitHub Desktop.
#!/bin/sh
PORTS_ARGS="-p 80:80"
VOLUME_ARGS="-v /srv/proget/db:/var/lib/postgresql/data"
VOLUME_ARGS="$VOLUME_ARGS -v /srv/proget/packages:/var/proget/packages"
RESTART_ARGS="--restart=always"
docker run -d $PORTS_ARGS $VOLUME_ARGS $RESTART_ARGS --name=proget inedo/proget:4.0.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment