Skip to content

Commit d8eed9c

Browse files
authored
fix(docs): corrected ghcr Docker image references in self-hosting documentation (#425)
1 parent 543e58c commit d8eed9c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/docs/src/self-hosting/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ docker run \
4343
-p 8787:8787 \
4444
-v /path/to/local/data:/app/.data \
4545
-e SERVER_CORS_ORIGINS="https://example.com" \
46-
ghcr.io/corentin-th/enclosed
46+
ghcr.io/corentinth/enclosed
4747
```
4848

4949
## Next Steps

packages/docs/src/self-hosting/docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docker run -d --name enclosed --restart unless-stopped -p 8787:8787 corentinth/e
3131
```
3232

3333
```bash [From GHCR]
34-
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 ghcr.io/corentin-th/enclosed
34+
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 ghcr.io/corentinth/enclosed
3535
```
3636
:::
3737

@@ -43,7 +43,7 @@ This command will download the Enclosed image and start the application, making
4343
- `--name enclosed`: Names the container "enclosed" for easy identification.
4444
- `--restart unless-stopped`: Configures the container to always restart unless it is explicitly stopped.
4545
- `-p 8787:8787`: Maps port 8787 on your host to port 8787 in the container, making the application accessible on your local machine.
46-
- `corentinth/enclosed` or `ghcr.io/corentin-th/enclosed`: Specifies the Docker image to use.
46+
- `corentinth/enclosed` or `ghcr.io/corentinth/enclosed`: Specifies the Docker image to use.
4747

4848
## Docker with Volume Persistence
4949

@@ -55,7 +55,7 @@ docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/
5555
```
5656

5757
```bash [From GHCR]
58-
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/local/data:/app/.data ghcr.io/corentin-th/enclosed
58+
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/local/data:/app/.data ghcr.io/corentinth/enclosed
5959
```
6060
:::
6161

@@ -67,7 +67,7 @@ docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/
6767
```
6868

6969
```bash [From GHCR]
70-
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/local/data:/app/.data --user $(id -u):$(id -g) ghcr.io/corentin-th/enclosed:latest-rootless
70+
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/local/data:/app/.data --user $(id -u):$(id -g) ghcr.io/corentinth/enclosed:latest-rootless
7171
```
7272
:::
7373

@@ -117,7 +117,7 @@ docker rm enclosed
117117
docker pull corentinth/enclosed
118118

119119
# Or from GitHub Container Registry
120-
docker pull ghcr.io/corentin-th/enclosed
120+
docker pull ghcr.io/corentinth/enclosed
121121

122122
# Run the container again
123123
docker run -d --name enclosed --restart unless-stopped -p 8787:8787 -v /path/to/local/data:/app/.data --user $(id -u):$(id -g) corentinth/enclosed

0 commit comments

Comments
 (0)