This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
OwlBoard/.test-tools/compose.yaml

16 lines
275 B
YAML

version: '3.1'
services:
mongo:
image: mongo:6.0-focal
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: owl
MONGO_INITDB_ROOT_PASSWORD: twittwoo
volumes:
- mongo-test:/data/db
ports:
- 27017:27017
volumes:
mongo-test: