Files
Checkmate/Server/docker/docker-compose.yaml
2024-06-13 21:37:14 -07:00

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