You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/admin-guide/deployment.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ This page covers how to deploy and run RAPTR in different environments.
6
6
7
7
For your convenience, we provide the following RAPTR container images:
8
8
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.
11
11
12
12
```bash
13
-
docker pull ghcr.io/CompassSecurity/raptr:latest
13
+
docker pull ghcr.io/compasssecurity/raptr:latest
14
14
```
15
15
16
16
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 \
100
100
-e ADMIN_EMAIL=admin@raptr.app \
101
101
-e ADMIN_PASSWORD=your-secure-password \
102
102
-v raptr_data:/data \
103
-
ghcr.io/CompassSecurity/raptr:latest
103
+
ghcr.io/compasssecurity/raptr:latest
104
104
```
105
105
106
106
This starts RAPTR on `http://localhost:8000` with:
@@ -118,7 +118,7 @@ docker run -d \
118
118
-p 8000:8000 \
119
119
--env-file .env \
120
120
-v raptr_data:/data \
121
-
ghcr.io/CompassSecurity/raptr:latest
121
+
ghcr.io/compasssecurity/raptr:latest
122
122
```
123
123
124
124
??? tip "Persisting data"
@@ -226,7 +226,7 @@ To use your local build in Docker Compose, replace the `image` field:
226
226
```yaml
227
227
raptr:
228
228
build: .
229
-
# image: ghcr.io/CompassSecurity/raptr:latest # comment out
229
+
# image: ghcr.io/compasssecurity/raptr:latest # comment out
0 commit comments