19 lines
425 B
YAML
19 lines
425 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
pdf_aggregation_statistics:
|
|
image: 'pdf_aggregation_service/pdf_aggregation_statistics:latest'
|
|
container_name: pdf_aggregation_statistics
|
|
ports:
|
|
- '1882:1882'
|
|
volumes:
|
|
- type: bind
|
|
source: $HOME/tmp/config
|
|
target: /mnt/config
|
|
- type: bind
|
|
source: $HOME/logs
|
|
target: /logs
|
|
build:
|
|
dockerfile: ./Dockerfile
|
|
context: .
|