mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
19 lines
325 B
YAML
19 lines
325 B
YAML
version: "3.3"
|
|
services:
|
|
redis:
|
|
image: eqalpha/keydb
|
|
ports:
|
|
- "6379:6379"
|
|
database:
|
|
image: mongo
|
|
ports:
|
|
- "27017:27017"
|
|
volumes:
|
|
- ./.data/db:/data/db
|
|
mongo-express:
|
|
image: mongo-express
|
|
ports:
|
|
- "8081:8081"
|
|
environment:
|
|
- ME_CONFIG_MONGODB_SERVER=database
|