Files
crawlab/core/docker-compose.yml
2024-10-20 18:51:21 +08:00

14 lines
294 B
Go

version: '3.3'
services:
mongo:
image: mongo:latest
container_name: mongo
restart: always
ports:
- "27017:27017"
redis:
image: redis:latest
container_name: redis
restart: always
ports:
- "6379:6379"