mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
16 lines
216 B
YAML
16 lines
216 B
YAML
version: "3.3"
|
|
services:
|
|
# Redis
|
|
redis:
|
|
image: eqalpha/keydb
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
# MongoDB
|
|
database:
|
|
image: mongo
|
|
ports:
|
|
- "27017:27017"
|
|
volumes:
|
|
- ./.data/db:/data/db
|