| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- version: "3.3"
- services:
- dalapi:
- image: reg.kajuree.com/dalapi:rpi
- build:
- context: ..
- dockerfile: dockerfiles/asp.dockerfile
- args:
- TZ: $TZ
- USE_SEQ: $USE_SEQ
- PROJ: gps.api.dataaccesslayer
- DIR: GPS.API.DataAccessLayer
- BRANCH: develop
- environment:
- ASPNETCORE_ENVIRONMENT: "Development"
- ASPNETCORE_URLS: "https://+;http://+"
- ASPNETCORE_HTTPS_PORT: 5091
- ASPNETCORE_Kestrel__Certificates__Default__Password: "crypticpassword"
- ASPNETCORE_Kestrel__Certificates__Default__Path: "/https/aspnetapp.pfx"
- ports:
- - "5090:5090"
- - "5091:5091"
- expose:
- - "5090"
- - "5091"
- volumes:
- - ~/.aspnet/https:/https/
- - /Log:/Log
- dockerdb:
- image: reg.kajuree.com/daldb:rpi
- ports:
- - "1435:1433"
- expose:
- - "1433"
- environment:
- SA_PASSWORD: "yW2S6KXdY8"
- ACCEPT_EULA: "Y"
- <<<<<<< Updated upstream
- seq:
- image: nexus.globalprocessing.net/seqtz
- build:
- context: ..
- dockerfile: dockerfiles/debiantz.dockerfile
- args:
- TZ: $TZ
- IMAGE: "datalust/seq"
- environment:
- SEQ_FIRSTRUN_ADMINPASSWORDHASH: "FAMX2GOr52HOTxM10yaKBJCC/KyGtxebd9awk2TIfdaiNoQM1w=="
- SEQ_STORAGE_SECRETKEY: "kXIvorf3/T5p/wFSfwjOioxmYtnm89pAhx5a43NU2M4="
- ACCEPT_EULA: "Y"
- ports:
- - "5345:80"
- =======
- >>>>>>> Stashed changes
|