@@ -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
117117docker 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
123123docker 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