mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
20 lines
241 B
YAML
20 lines
241 B
YAML
|
version: "3.9"
|
||
|
|
||
|
services:
|
||
|
|
||
|
redis:
|
||
|
image: redis:6-alpine
|
||
|
ports:
|
||
|
- 6379:6379
|
||
|
|
||
|
mongo:
|
||
|
image: mongo:6
|
||
|
ports:
|
||
|
- 27017:27017
|
||
|
volumes:
|
||
|
- mongodb_data_container:/data/db
|
||
|
|
||
|
|
||
|
|
||
|
volumes:
|
||
|
mongodb_data_container:
|