mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-26 03:39:27 -06:00
15 lines
245 B
YAML
15 lines
245 B
YAML
version: '3'
|
|
services:
|
|
server:
|
|
image: uptime_server:latest
|
|
ports:
|
|
- "5000:5000"
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- redis
|
|
- mongodb
|
|
redis:
|
|
image: uptime_redis
|
|
mongodb:
|
|
image: uptime_database_mongo |