https://github.com/ulbora/docker_alpine_mongodb
Docker MongoDB running on Alpine
https://github.com/ulbora/docker_alpine_mongodb
Last synced: 2 months ago
JSON representation
Docker MongoDB running on Alpine
- Host: GitHub
- URL: https://github.com/ulbora/docker_alpine_mongodb
- Owner: Ulbora
- License: mit
- Created: 2016-02-22T03:48:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-27T22:25:28.000Z (over 10 years ago)
- Last Synced: 2025-09-01T07:21:11.561Z (10 months ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Alpine Mongodb
- 1.0.0, latest[ (Dockerfile)](https://github.com/Ulbora/docker_alpine_mongodb/blob/1.0.0/Dockerfile)
This is Docker mongoDB running on Alpine
This will be the base container for all Ulbora Labs MongoDB Docker projects.
Currently this is not production ready, but will be moved to production when MongoDB is offered in the latest
Alpine container. Currently MongoDB is only available in Alpine:edge and may not be stable.
# Running
```
docker run -d -p 27017:27017 ulboralabs/mongodb-alpine:latest
```
#### or
```
docker run -d -p 27017:27017 -v /someLocalVolume:/data/db \
ulboralabs/mongodb-alpine:latest
```
# Connect to running instance
```
docker exec -it ulboralabs/mongodb-alpine:latest sh
```