mirror of
https://github.com/jimeh/Dockerfiles.git
synced 2026-02-19 07:56:41 +00:00
Add mongo and rabbitmq compose files
This commit is contained in:
14
mongo/docker-compose.yml
Normal file
14
mongo/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
version: "2"
|
||||
services:
|
||||
mongo:
|
||||
image: mongo
|
||||
container_name: mongo
|
||||
restart: always
|
||||
network_mode: bridge
|
||||
ports:
|
||||
- "127.0.0.1:27017:27017"
|
||||
volumes:
|
||||
- data:/data/db
|
||||
volumes:
|
||||
data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user