You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/.devcontainer/docker-compose.yml

22 lines
356 B
YAML

version: '3.9'
services:
mongo:
image: mongo:4-focal
restart: unless-stopped
volumes:
- mongodb-data:/data/db
hydro:
build:
context: .
dockerfile: Dockerfile
privileged: true
depends_on:
- mongo
volumes:
- ..:/workspace:cached
- testdata:/data/file
volumes:
mongodb-data:
testdata: