commit f0ef5c55a6b48c48ede9e717b8c4765adedf550f Author: aetos Date: Tue Oct 14 11:49:19 2025 +0000 Add docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..5635186 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +services: + mongodb: + image: mongo:7.0 + container_name: mongodb + restart: unless-stopped + ports: + - "27017:27017" + env_file: + - .env + command: ["--wiredTigerCacheSizeGB", "4"] + volumes: + - /home/aetos/mongo/data:/data/db + - /home/aetos/mongo/config:/data/configdb \ No newline at end of file