Skip to content

Commit 54b3b86

Browse files
committed
Simplify Docker image references
- Change docker-compose.yml to use codebude/masscode-web:latest (Docker Hub default) - Update README Docker Hub example to use simplified image name - Remove explicit docker.io/ prefix since Docker Hub is the default registry
1 parent 83f148b commit 54b3b86

2 files changed

Lines changed: 2 additions & 16 deletions

File tree

README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -92,20 +92,6 @@ You can also use massCode Web with databases stored on network drives or shared
9292
http://localhost:8080
9393
```
9494

95-
### Using Docker Hub (Alternative)
96-
97-
If you prefer to use Docker Hub directly instead of Docker Compose:
98-
99-
```bash
100-
docker run -d \
101-
--name masscode-web \
102-
-p 8080:80 \
103-
-v /path/to/your/masscode/db.json:/data/db.json:ro \
104-
docker.io/codebude/masscode-web:latest
105-
```
106-
107-
Then open `http://localhost:8080` in your browser.
108-
10995
### Volume Mapping
11096

11197
The `docker-compose.yml` includes a volume mount that maps your local `db.json` file to the container:
@@ -151,7 +137,7 @@ environment:
151137
docker run -d -p 8080:80 -v /path/to/your/db.json:/data/db.json:ro ghcr.io/codebude/masscode-web:latest
152138
153139
# Or using Docker Hub
154-
docker run -d -p 8080:80 -v /path/to/your/db.json:/data/db.json:ro docker.io/codebude/masscode-web:latest
140+
docker run -d -p 8080:80 -v /path/to/your/db.json:/data/db.json:ro codebude/masscode-web:latest
155141
```
156142

157143
## 🤝 Contributing

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
masscode-web:
33
image: ghcr.io/codebude/masscode-web:latest
4-
# image: docker.io/codebude/masscode-web:latest
4+
# image: codebude/masscode-web:latest
55
ports:
66
- "8080:80"
77
volumes:

0 commit comments

Comments
 (0)