UrlsController/docker-compose.yml

31 lines
688 B
YAML

version: '3.3'
services:
urls_controller:
image: 'pdf_aggregation_service/urls_controller:latest'
ports:
- '1880:1880'
volumes:
- type: bind
source: $HOME/tmp/config
target: /mnt/config
- type: bind
source: $HOME/tmp
target: /tmp
- type: bind
source: $HOME/logs
target: /logs
- type: bind
source: /mnt/bulk_import
target: /mnt/bulk_import
- type: bind
source: $HOME/workerReports
target: /workerReports
- type: bind
source: $HOME/bulkImportReports
target: /bulkImportReports
build:
dockerfile: ./Dockerfile
context: .