Skip to content

Commit 21c0057

Browse files
committed
docs: fix CamelCase for docker image name
1 parent a839f90 commit 21c0057

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docker run -d \
2020
-e ADMIN_EMAIL=admin@raptr.app \
2121
-e ADMIN_PASSWORD=your-secure-password \
2222
-v raptr_data:/data \
23-
ghcr.io/CompassSecurity/raptr:latest
23+
ghcr.io/compasssecurity/raptr:latest
2424
```
2525

2626
## Sandbox

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
retries: 5
1414

1515
raptr:
16-
image: ghcr.io/CompassSecurity/raptr:latest
16+
image: ghcr.io/compasssecurity/raptr:latest
1717
restart: always
1818
ports:
1919
- "8000:8000"

docs/docs/admin-guide/data_persistence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker run -d \
4040
-e DB_ENGINE=sqlite \
4141
-e SQLITE_DB_PATH=/data/raptr.db \
4242
-v raptr_data:/data \
43-
ghcr.io/CompassSecurity/raptr:latest
43+
ghcr.io/compasssecurity/raptr:latest
4444
```
4545

4646
!!! warning "Without a volume mount, SQLite data is lost when the container is removed."

docs/docs/admin-guide/deployment.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ This page covers how to deploy and run RAPTR in different environments.
66

77
For your convenience, we provide the following RAPTR container images:
88

9-
- `ghcr.io/CompassSecurity/raptr:latest` - The image is updated whenever a merge to the main branch is performed.
10-
- `ghcr.io/CompassSecurity/raptr:v{version}` - A dedicated versioned image is created from time to time. This is maintained through Git tags. An entry in the [Release Notes](../release-notes/index.md) for the version will be available.
9+
- `ghcr.io/compasssecurity/raptr:latest` - The image is updated whenever a merge to the main branch is performed.
10+
- `ghcr.io/compasssecurity/raptr:v{version}` - A dedicated versioned image is created from time to time. This is maintained through Git tags. An entry in the [Release Notes](../release-notes/index.md) for the version will be available.
1111

1212
```bash
13-
docker pull ghcr.io/CompassSecurity/raptr:latest
13+
docker pull ghcr.io/compasssecurity/raptr:latest
1414
```
1515

1616
The RAPTR container image combines the backend and frontend into a single container. The frontend is served by the backend using FastAPI's StaticFiles.
@@ -100,7 +100,7 @@ docker run -d \
100100
-e ADMIN_EMAIL=admin@raptr.app \
101101
-e ADMIN_PASSWORD=your-secure-password \
102102
-v raptr_data:/data \
103-
ghcr.io/CompassSecurity/raptr:latest
103+
ghcr.io/compasssecurity/raptr:latest
104104
```
105105

106106
This starts RAPTR on `http://localhost:8000` with:
@@ -118,7 +118,7 @@ docker run -d \
118118
-p 8000:8000 \
119119
--env-file .env \
120120
-v raptr_data:/data \
121-
ghcr.io/CompassSecurity/raptr:latest
121+
ghcr.io/compasssecurity/raptr:latest
122122
```
123123

124124
??? tip "Persisting data"
@@ -226,7 +226,7 @@ To use your local build in Docker Compose, replace the `image` field:
226226
```yaml
227227
raptr:
228228
build: .
229-
# image: ghcr.io/CompassSecurity/raptr:latest # comment out
229+
# image: ghcr.io/compasssecurity/raptr:latest # comment out
230230
```
231231

232232
## Running Locally (Development)

docs/docs/quick-start/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ docker run -d \
3636
-e ADMIN_EMAIL=admin@raptr.app \
3737
-e ADMIN_PASSWORD=your-secure-password \
3838
-v raptr_data:/data \
39-
ghcr.io/CompassSecurity/raptr:latest
39+
ghcr.io/compasssecurity/raptr:latest
4040
```
4141

4242
Open [http://localhost:8000](http://localhost:8000) and log in with the credentials above.

0 commit comments

Comments
 (0)