Created
April 24, 2019 18:50
-
-
Save dnavarrom/397d415ca5bf380d3696cdf09ad75bad to your computer and use it in GitHub Desktop.
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
#download image | |
git clone https://github.com/cachethq/Docker.git cachet-docker | |
cd cachet-docker | |
#run Database | |
docker run --name postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -d postgres:9.5 | |
#run cachet | |
docker run -d --name cachet --link postgres -e DB_DRIVER=pgsql -e DB_HOST=postgres -e DB_DATABASE=postgres -e DB_USERNAME=postgres -e DB_PASSWORD=postgres -d cachethq/docker:latest | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment