Skip to content

Commit

Permalink
Add docker-compose instructions (fixes GH-653)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jan 22, 2025
1 parent f451e73 commit b4c57a0
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion packages/website/src/content/docs/sidecar/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,26 @@ import { Tabs, TabItem } from '@astrojs/starlight/components';

We provide a Docker container which runs the Sidecar (including the overlay).

```
```shell
docker run --rm \
--pull always \
--name spotlight \
--detach \
-p 8969:8969/tcp \
ghcr.io/getsentry/spotlight:latest
```

If you're already using Docker Compose, we recommend adding Spotlight to your `docker-compose.yml` file:


```yaml
version: "3.7"
services:
# ...
spotlight:
image: ghcr.io/getsentry/spotlight:latest
restart: on-failure
pull_policy: always
ports:
- "8969:8969"
```

0 comments on commit b4c57a0

Please sign in to comment.