Skip to content

Commit 7d1d7a3

Browse files
committed
ref(self-hosted): Update docs for GeoIP update and dc up -d
Companion PR for getsentry/self-hosted#3490
1 parent fae853c commit 7d1d7a3

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

develop-docs/self-hosted/geolocation.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ With this configuration file in place, subsequent runs of Sentry's `install.sh`
2424

2525
1. For the `web` service: **User Settings > Security > Session History** should display country code and region (for example, "US (CA)") underneath the IP addresses in the table.
2626

27-
It's normal to see the `sentry_self_hosted_geoipupdate_1` container exit soon after startup, since updating the geolocation database is a one-off batch process and not a long-running job.
27+
If you ever need to manually refresh the IP address geolocation database, you can run the following command:
28+
29+
```bash
30+
./install/geoip.sh
31+
```
2832

2933
## Upgrading
3034

develop-docs/self-hosted/releases.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ We may have some updated configuration, especially for new features, so always c
3838

3939
If you have a `.env.custom` file, make sure to copy new environment variables from the `.env` file into the `.env.custom` file before running the install script.
4040

41-
Finally, to upgrade, run `./install.sh`. Upon completion, run `docker compose up -d` (or if you have `.env.custom` file, run `docker compose --env-file .env --env-file .env.custom up -d`).
41+
Finally, to upgrade, run `./install.sh`. Upon completion, run `docker compose up --wait` (or if you have `.env.custom` file, run `docker compose --env-file .env --env-file .env.custom up --wait`).
4242

4343
### Hard Stops
4444

develop-docs/self-hosted/troubleshooting.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The _nuclear option_ is removing all Kafka-related volumes and recreating them w
116116
```
117117
4. Start the instance:
118118
```shell
119-
docker compose up -d
119+
docker compose up --wait
120120
```
121121
### Reducing disk usage
122122

@@ -178,7 +178,7 @@ Occasionally, you might see an error like this
178178
container for service "${servicename}" is unhealthy
179179
```
180180
181-
This can usually be resolved by running `docker compose down` and `docker compose up -d` or rerunning the install script.
181+
This can usually be resolved by running `docker compose down` and `docker compose up --wait` or rerunning the install script.
182182
183183
## Docker Network Conflicting IP Address
184184

0 commit comments

Comments
 (0)