docker-compose.yml 609 B

12345678910111213141516171819202122232425262728293031323334
  1. services:
  2. start:
  3. image: start
  4. build:
  5. context: python
  6. dockerfile: start
  7. python:
  8. image: python
  9. build:
  10. context: python
  11. dockerfile: python
  12. depends_on:
  13. - start
  14. # spacchettatore di pdf per l'amministrazione
  15. bpconverter:
  16. image: django.bcp
  17. build:
  18. context: python
  19. dockerfile: django.bpc
  20. depends_on:
  21. - python
  22. ports:
  23. - 18220:8220
  24. volumes:
  25. - /home/data/bpconverter:/home/bpconverter
  26. environment:
  27. - ENDPOINT=8220
  28. - V=5
  29. entrypoint: ['/bin/bash','/root/run.sh']
  30. restart: unless-stopped