Created
June 13, 2015 14:49
-
-
Save marvell/b6d4c02fa29f6c8c002a to your computer and use it in GitHub Desktop.
Run Sentry stack
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
docker run --name=redis -d redis | |
docker run --name=postgres -e POSTGRES_PASSWORD=secret -d postgres | |
docker exec postgres createdb -U postgres -E utf-8 sentry | |
docker run --rm -it --link=postgres:postgres --link=redis:redis -v $(pwd):/home/user/.sentry sentry sentry upgrade | |
docker run --name=sentry --env="VIRTUAL_HOST=sentry.ndr.su" --link=postgres:postgres --link=redis:redis -v $(pwd):/home/user/.sentry -d sentry | |
docker run --name=sentry-celery --link=postgres:postgres --link=redis:redis -v $(pwd):/home/user/.sentry -d sentry sentry celery worker -B |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment