First commit - WIP WIP

This commit is contained in:
rxf
2023-04-03 20:57:42 +02:00
commit 1dec10d12d
23 changed files with 2220 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.9'
volumes:
mongodata:
services:
mongodb:
image: mongo
volumes:
- mongodata:/data/db
- ${PWD}/log:/var/log
ports:
- "27017:27017"
container_name: mongodb
# command: '--auth'
restart: unless-stopped