mirror of
https://github.com/jimeh/Dockerfiles.git
synced 2026-02-18 23:46:40 +00:00
15 lines
233 B
YAML
15 lines
233 B
YAML
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
|