ops: add docker support

This commit is contained in:
2025-03-11 18:53:26 +01:00
parent bbf83ef811
commit 134b89118f
4 changed files with 63 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
services:
mongodb:
user: "1000"
volumes:
- ./data/mongodb/:/data/db/
image: mongodb/mongodb-community-server:latest
command: mongod --bind_ip_all
hexdeck:
user: "1000"
ports:
- 3000:3000
environment:
- MONGO_URI=mongodb://mongodb:27017/
depends_on:
- mongodb
build: .