Skip to content
Snippets Groups Projects
Select Git revision
  • 6e26823ca77d08cfe45b8bed08850a2d254f7a2c
  • master default protected
  • compose
  • dockerservices
  • simpleservices
  • hotsource
6 results

__init__.py

Blame
  • Forked from COM3014 / microservices
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    docker-compose.yaml 479 B
    services:
      # Start React UI Client
      client:
        image: clientms-img
        build:
          context: client
          dockerfile: ./Dockerfile
        ports:
          - 4200:4200
        networks:
          - airline-net
      # End React UI Client
    
      # Start Flight Microservice
      flight:
        image: flightms-img
        build:
          context: FlightMicroservice
          dockerfile: ./Dockerfile
        ports:
          - 4201:8080
        networks:
        - airline-net
      # End Flight Microservice
    
    networks:
      airline-net: {}