mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
15 lines
295 B
YAML
15 lines
295 B
YAML
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"
|