docker-compose.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. version: "3.3"
  2. services:
  3. dalapi:
  4. image: reg.kajuree.com/dalapi:rpi
  5. build:
  6. context: ..
  7. dockerfile: dockerfiles/asp.dockerfile
  8. args:
  9. TZ: $TZ
  10. USE_SEQ: $USE_SEQ
  11. PROJ: gps.api.dataaccesslayer
  12. DIR: GPS.API.DataAccessLayer
  13. BRANCH: develop
  14. environment:
  15. ASPNETCORE_ENVIRONMENT: "Development"
  16. ASPNETCORE_URLS: "https://+;http://+"
  17. ASPNETCORE_HTTPS_PORT: 5091
  18. ASPNETCORE_Kestrel__Certificates__Default__Password: "crypticpassword"
  19. ASPNETCORE_Kestrel__Certificates__Default__Path: "/https/aspnetapp.pfx"
  20. ports:
  21. - "5090:5090"
  22. - "5091:5091"
  23. expose:
  24. - "5090"
  25. - "5091"
  26. volumes:
  27. - ~/.aspnet/https:/https/
  28. - /Log:/Log
  29. dockerdb:
  30. image: reg.kajuree.com/daldb:rpi
  31. ports:
  32. - "1435:1433"
  33. expose:
  34. - "1433"
  35. environment:
  36. SA_PASSWORD: "yW2S6KXdY8"
  37. ACCEPT_EULA: "Y"
  38. <<<<<<< Updated upstream
  39. seq:
  40. image: nexus.globalprocessing.net/seqtz
  41. build:
  42. context: ..
  43. dockerfile: dockerfiles/debiantz.dockerfile
  44. args:
  45. TZ: $TZ
  46. IMAGE: "datalust/seq"
  47. environment:
  48. SEQ_FIRSTRUN_ADMINPASSWORDHASH: "FAMX2GOr52HOTxM10yaKBJCC/KyGtxebd9awk2TIfdaiNoQM1w=="
  49. SEQ_STORAGE_SECRETKEY: "kXIvorf3/T5p/wFSfwjOioxmYtnm89pAhx5a43NU2M4="
  50. ACCEPT_EULA: "Y"
  51. ports:
  52. - "5345:80"
  53. =======
  54. >>>>>>> Stashed changes