bugbug/docker-compose.yml

47 строки
1.0 KiB
YAML
Исходник Обычный вид История

version: '3.2'
services:
bugbug-base:
build:
context: .
dockerfile: infra/dockerfile.base
image: mozilla/bugbug-base
bugbug-commit-retrieval:
build:
context: .
dockerfile: infra/dockerfile.commit_retrieval
image: mozilla/bugbug-commit-retrieval
volumes:
- type: bind
source: ./cache/
target: /cache/
volume:
nocopy: true
bugbug-http-service:
build:
context: http_service
image: mozilla/bugbug-http-service
environment:
- BUGBUG_BUGZILLA_TOKEN
2019-05-23 21:39:02 +03:00
- PORT=8000
ports:
- target: 8000
published: 8000
protocol: tcp
mode: host
bugbug-http-service-bg-worker:
build:
context: http_service
dockerfile: Dockerfile.bg_worker
image: mozilla/bugbug-http-service-bg-worker
environment:
- BUGBUG_BUGZILLA_TOKEN
bugbug-spawn-pipeline:
build:
context: infra/
dockerfile: dockerfile.spawn_pipeline
image: mozilla/bugbug-spawn-pipeline