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