mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-25 15:24:03 +08:00
* impr: add selfhosting using docker only * add recaptcha config and docs * add documentation on the backend-configuration.json file, remove ---redacted--- from example config --------- Co-authored-by: Jack <jack@monkeytype.com>
24 lines
No EOL
454 B
YAML
24 lines
No EOL
454 B
YAML
name: monkeytype
|
|
version: "3.8"
|
|
services:
|
|
redis:
|
|
container_name: monkeytype-redis
|
|
image: redis:6.2.6
|
|
restart: on-failure
|
|
ports:
|
|
- "${DOCKER_REDIS_PORT:-6379}:6379"
|
|
volumes:
|
|
- redis-data:/data
|
|
|
|
mongodb:
|
|
container_name: monkeytype-mongodb
|
|
image: mongo:5.0.8
|
|
restart: on-failure
|
|
ports:
|
|
- "${DOCKER_DB_PORT:-27017}:27017"
|
|
volumes:
|
|
- mongo-data:/data/db
|
|
|
|
volumes:
|
|
mongo-data:
|
|
redis-data: |