| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- version: "3.3"
- services:
- dockerdb:
- image: nexus.globalprocessing.net/alexissecuredb
- ports:
- - "1434:1433"
- expose:
- - "1433"
- environment:
- SA_PASSWORD: "yW2S6KXdY8"
- ACCEPT_EULA: "Y"
-
- # dockerdb:
- # image: "nexus.globalprocessing.net/aws.database"
- # build:
- # context: ..
- # dockerfile: dockerfiles/socat.dockerfile
- # args:
- # TZ: $TZ
- # ports:
- # - "1434:1433"
- # environment:
- # IP: "10.220.3.109" #E2E
- # # IP: "10.220.3.248" #FULL
- # # IP: "10.220.3.170" #DEV
- # # IP: "host.docker.internal"
-
- secureapi:
- image: nexus.globalprocessing.net/gps.secureapi:develop
- build:
- context: ..
- dockerfile: dockerfiles/asp.dockerfile
- args:
- TZ: $TZ
- USE_SEQ: $USE_SEQ
- PROJ: gps.api
- DIR: GPS.Secure.API
- BRANCH: develop
- COREVERS: "5.0"
- environment:
- ASPNETCORE_ENVIRONMENT: "Development"
- ASPNETCORE_URLS: "https://+;http://+"
- ASPNETCORE_HTTPS_PORT: "44320"
- ASPNETCORE_Kestrel__Certificates__Default__Password: "crypticpassword"
- ASPNETCORE_Kestrel__Certificates__Default__Path: "/https/aspnetapp.pfx"
- ports:
- - "44320:443"
- - "8020:80"
- expose:
- - "80"
- - "443"
- depends_on:
- - dockerdb
- volumes:
- - ~/.aspnet/https:/https/
- - ./logs:/App/log
-
- gatewayapi:
- image: nexus.globalprocessing.net/gps.gatewayapi:develop
- build:
- context: ..
- dockerfile: dockerfiles/asp.dockerfile
- args:
- TZ: $TZ
- USE_SEQ: $USE_SEQ
- PROJ: gps.api
- DIR: GPS.Secure.API.Gateway
- BRANCH: develop
- COREVERS: "5.0"
- environment:
- ASPNETCORE_ENVIRONMENT: "Development"
- ASPNETCORE_URLS: "https://+;http://+"
- ASPNETCORE_HTTPS_PORT: "56229"
- ASPNETCORE_Kestrel__Certificates__Default__Password: "crypticpassword"
- ASPNETCORE_Kestrel__Certificates__Default__Path: "/https/aspnetapp.pfx"
- ports:
- - "56229:443"
- - "8021:80"
- expose:
- - "80"
- - "443"
- depends_on:
- - dockerdb
- volumes:
- - ~/.aspnet/https:/https/
- - ./logs:/App/log
|