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
Raw Normal View History

2022-12-20 19:03:30 +00:00
version: '3.1'
services:
mongo:
image: mongo:6.0-focal
2022-12-20 19:03:30 +00:00
restart: always
environment:
2022-12-20 19:16:23 +00:00
MONGO_INITDB_ROOT_USERNAME: owl
MONGO_INITDB_ROOT_PASSWORD: twittwoo
volumes:
2022-12-20 23:50:51 +00:00
- mongo-test:/data/db
ports:
- 27017:27017
volumes:
2022-12-21 20:15:11 +00:00
mongo-test: