2023-03-21 15:46:33 +01:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
urls_controller:
|
|
|
|
image: 'pdf_aggregation_service/urls_controller:latest'
|
2023-06-22 11:39:11 +02:00
|
|
|
container_name: urls_controller
|
2023-03-21 15:46:33 +01:00
|
|
|
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
|
2023-05-11 02:07:55 +02:00
|
|
|
- type: bind
|
2023-05-23 20:09:34 +02:00
|
|
|
source: /mnt/bulk_import
|
|
|
|
target: /mnt/bulk_import
|
2023-05-24 12:52:28 +02:00
|
|
|
- type: bind
|
2023-05-24 13:10:57 +02:00
|
|
|
source: $HOME/reports
|
|
|
|
target: /reports # This will contain the "workerReports" and "bulkImportReports" subdirectories.
|
2023-03-21 15:46:33 +01:00
|
|
|
build:
|
|
|
|
dockerfile: ./Dockerfile
|
|
|
|
context: .
|