2
0
Clean and backupable on-premise deployment of Sentry using Docker COmpose
This repository has been archived on 2020-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Burak Yigit Kaya 9177155c79
feat(nightlies): Add ability to build from nightlies (#211)
This patch adds the optional IMAGE env variable to set the base
image and adds nightly builds to Travis CI.
2019-07-08 18:56:51 +03:00
.dockerignore chore(dockerignore): Ignore new CI/install files in Docker 2019-07-02 00:23:31 +03:00
.env.example feat(nightlies): Add ability to build from nightlies (#211) 2019-07-08 18:56:51 +03:00
.gitignore Fix possible typo in gitignore 2019-06-11 23:39:12 -07:00
.travis.yml feat(nightlies): Add ability to build from nightlies (#211) 2019-07-08 18:56:51 +03:00
config.yml Update config files 2016-11-07 09:13:03 -08:00
docker-compose.yml feat(nightlies): Add ability to build from nightlies (#211) 2019-07-08 18:56:51 +03:00
Dockerfile feat(nightlies): Add ability to build from nightlies (#211) 2019-07-08 18:56:51 +03:00
install.sh feat(install): Add fully automated install script 2019-07-02 00:23:31 +03:00
LICENSE fix(license): Fix license attribution terms (#197) 2019-06-20 01:10:22 +03:00
Makefile Add --pull into default make build target 2019-05-06 14:17:59 -07:00
README.md docs(readme): Update readme for the install script (#209) 2019-07-02 23:58:49 +03:00
requirements.txt Getting started 2016-02-11 13:52:19 -08:00
sentry.conf.py fix(config): Remove autocommit option from DB config (#195) 2019-06-18 22:26:47 +03:00
test.sh feat(nightlies): Add ability to build from nightlies (#211) 2019-07-08 18:56:51 +03:00

Sentry On-Premise Build Status

Official bootstrap for running your own Sentry with Docker.

Requirements

  • Docker 1.10.0+
  • Compose 1.17.0+

Minimum Hardware Requirements:

  • You need at least 3GB RAM

Setup

To get started with all the defaults, simply clone the repo and run ./install.sh in your local check-out.

There may need to be modifications to the included docker-compose.yml file to accommodate your needs or your environment (such as adding GitHub credentials). If you want to perform these, do them before you run the install script.

The recommended way to customize your configuration is using the files below, in that order:

  • config.yml
  • sentry.conf.py
  • .env w/ environment variables

If you have any issues or questions, our Community Forum is at your service!

Securing Sentry with SSL/TLS

If you'd like to protect your Sentry install with SSL/TLS, there are fantastic SSL/TLS proxies like HAProxy and Nginx. You'll likely to add this service to your docker-compose.yml file.

Updating Sentry

Updating Sentry using Compose is relatively simple. Just use the following steps to update. Make sure that you have the latest version set in your Dockerfile. Or use the latest version of this repository.

Use the following steps after updating this repository or your Dockerfile:

docker-compose build --pull # Build the services again after updating, and make sure we're up to date on patch version
docker-compose run --rm web upgrade # Run new migrations
docker-compose up -d # Recreate the services

Resources