| 12345678910111213141516171819202122232425262728293031323334 |
- services:
- start:
- image: start
- build:
- context: python
- dockerfile: start
- python:
- image: python
- build:
- context: python
- dockerfile: python
- depends_on:
- - start
- # spacchettatore di pdf per l'amministrazione
- bpconverter:
- image: django.bcp
- build:
- context: python
- dockerfile: django.bpc
- depends_on:
- - python
- ports:
- - 18220:8220
- volumes:
- - /home/data/bpconverter:/home/bpconverter
- environment:
- - ENDPOINT=8220
- - V=5
- entrypoint: ['/bin/bash','/root/run.sh']
- restart: unless-stopped
|