Where is the config.yml file located in sentry docker?

I used this docker-compose file to successfully run sentry on premise. How do i change the config file? Where is it located?

The running containers are,

root@sentry:~# docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED              STATUS              PORTS                    NAMES                                                                                         
af70794fbd0d        sentry              "/entrypoint.sh run …"   About a minute ago   Up About a minute   0.0.0.0:9000->9000/tcp   root_sentry_1                                                                                 
733862200ac9        sentry              "/entrypoint.sh sent…"   About a minute ago   Up About a minute   9000/tcp                 root_sentry-cron_1                                                                            
4d6bc8691010        sentry              "/entrypoint.sh sent…"   About a minute ago   Up About a minute   9000/tcp                 root_sentry-worker-1_1
1cd4f132ccca        redis               "docker-entrypoint.s…"   About a minute ago   Up About a minute   6379/tcp                 root_redis_1
0c887f4b5ee0        postgres            "docker-entrypoint.s…"   About a minute ago   Up About a minute   5432/tcp                 root_postgres_1

Thank you.

most configuration has already been exposed out as environment, so you can directly change them in the docker-compose.yml file.

for more deep fine tuning, please check out sentry on Github, where you can find the config.yml.

After changing, run install.sh to update the docker images.

1 Like