Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haohanyang/compass-web-build-images
Experimental Docker images for MongoDB Compass Web
https://github.com/haohanyang/compass-web-build-images
gui mongo mongodb
Last synced: 5 days ago
JSON representation
Experimental Docker images for MongoDB Compass Web
- Host: GitHub
- URL: https://github.com/haohanyang/compass-web-build-images
- Owner: haohanyang
- License: other
- Created: 2024-12-15T17:27:50.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2025-01-08T17:34:00.000Z (about 1 month ago)
- Last Synced: 2025-01-08T18:37:38.954Z (about 1 month ago)
- Topics: gui, mongo, mongodb
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/haohanyang/compass-web/
- Size: 589 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Moved to https://github.com/haohanyang/compass-web
# Docker Images for MongoDB Compass WebDocker images of MongoDB Compass web. The images are experimental and not ready for production.
![screenshot](/static/screenshot.png)
## Quick start
* Docker cli
```
docker run -it --rm -p 8080:8080 haohanyang/compass-web
```
* Docker Compose
```yaml
services:
compass:
image: haohanyang/compass-web
container_name: compass-web-dev-compass
depends_on:
- mongo
ports:
- 8080:8080
networks:
- compass-web-devmongo:
image: mongo
container_name: compass-web-dev-mongo
networks:
- compass-web-devnetworks:
compass-web-dev:
driver: bridge
```
Then visit your MongoDB compass on http://localhost:8080