initial commit

This commit is contained in:
2024-03-09 18:54:15 -05:00
parent 36703cdc39
commit 66ea127f23
9 changed files with 10052 additions and 0 deletions

13
docker-compose.yaml Normal file
View File

@@ -0,0 +1,13 @@
services:
db:
image: mongo
restart: unless-stopped
ports:
- 127.0.0.1:27017:27017
volumes:
- db-data:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: pass0rd123
volumes:
db-data: