mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
28 lines
438 B
YAML
28 lines
438 B
YAML
version: "3.9"
|
|
services:
|
|
server:
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 1250:1250
|
|
volumes:
|
|
- model-cache:/root/.cache
|
|
environment:
|
|
ENTRYPOINT: server
|
|
REDIS_HOST: redis
|
|
worker:
|
|
build:
|
|
context: .
|
|
volumes:
|
|
- model-cache:/root/.cache
|
|
environment:
|
|
ENTRYPOINT: worker
|
|
REDIS_HOST: redis
|
|
redis:
|
|
image: redis:7.2
|
|
ports:
|
|
- 6379:6379
|
|
|
|
volumes:
|
|
model-cache:
|