Commit c49cf732 authored by thomas Bousselin's avatar thomas Bousselin
Browse files

feat: add plug test easy launcher

parent 278ae36c
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
version: "3.5"
services:
  orion:
    image: fiware/orion-ld
    hostname: orion
    container_name: fiware-orion
    expose:
      - "1026"
    ports:
      - "8092:1026"
    depends_on:
      - mongo-db
    command: -dbhost mongo-db -logLevel DEBUG -mongocOnly -wip entityMaps

  mongo-db:
    image: mongo:3.6
    hostname: mongo-db
    container_name: db-mongo
    ports:
      - "27017:27017"
    networks:
      - default
    command: --nojournal
    volumes:
      - mongo-db:/data

volumes:
  mongo-db: ~
+83 −0
Original line number Diff line number Diff line
version: '3'

services:
  broker1:
    image: scorpiobroker/all-in-one-runner:java-latest
    environment:
      DBHOST: postgres1
    ports:
      - "8090:9090"
    depends_on:
      - postgres1
  postgres1:
    image: postgis/postgis
    ports:
      - "5432"
    environment:
      POSTGRES_USER: ngb
      POSTGRES_PASSWORD: ngb
      POSTGRES_DB: ngb
  broker2:
    image: scorpiobroker/all-in-one-runner:java-latest
    environment:
      DBHOST: postgres2
    ports:
      - "8091:9090"
    depends_on:
      - postgres2
  postgres2:
    image: postgis/postgis
    ports:
      - "5432"
    environment:
      POSTGRES_USER: ngb
      POSTGRES_PASSWORD: ngb
      POSTGRES_DB: ngb
  broker3:
    image: scorpiobroker/all-in-one-runner:java-latest
    environment:
      DBHOST: postgres3
    ports:
      - "8092:9090"
    depends_on:
      - postgres3
  postgres3:
    image: postgis/postgis
    ports:
      - "5432"
    environment:
      POSTGRES_USER: ngb
      POSTGRES_PASSWORD: ngb
      POSTGRES_DB: ngb
  broker4:
    image: scorpiobroker/all-in-one-runner:java-latest
    environment:
      DBHOST: postgres4
    ports:
      - "8093:9090"
    depends_on:
      - postgres4
  postgres4:
    image: postgis/postgis
    ports:
      - "5432"
    environment:
      POSTGRES_USER: ngb
      POSTGRES_PASSWORD: ngb
      POSTGRES_DB: ngb
  broker5:
    image: scorpiobroker/all-in-one-runner:java-latest
    environment:
      DBHOST: postgres5
    ports:
      - "8094:9090"
    depends_on:
      - postgres5
  postgres5:
    image: postgis/postgis
    ports:
      - "5432"
    environment:
      POSTGRES_USER: ngb
      POSTGRES_PASSWORD: ngb
      POSTGRES_DB: ngb
+15 −0
Original line number Diff line number Diff line
# use this file with : docker compose --env-file .env --env-file .context-source.env -p stellio-context-source up
API_GATEWAY_PORT=8090
KAFKA_PORT=29093
POSTGRES_PORT=5433
SEARCH_SERVICE_PORT=8093
SUBSCRIPTION_SERVICE_PORT=8094

# Used by subscription service when searching entities for recurring subscriptions
# (those defined with a timeInterval parameter)
SUBSCRIPTION_ENTITY_SERVICE_URL=http://search-service:8093

# Used as a base URL by subscription service when serving contexts for notifications
SUBSCRIPTION_STELLIO_URL=http://localhost:8090

CONTAINER_NAME_PREFIX=context-source-
+15 −0
Original line number Diff line number Diff line
# use this file with : docker compose --env-file .env --env-file .context-source.env -p stellio-context-source up
API_GATEWAY_PORT=8091
KAFKA_PORT=29094
POSTGRES_PORT=5434
SEARCH_SERVICE_PORT=18091
SUBSCRIPTION_SERVICE_PORT=28091

# Used by subscription service when searching entities for recurring subscriptions
# (those defined with a timeInterval parameter)
SUBSCRIPTION_ENTITY_SERVICE_URL=http://search-service:8093

# Used as a base URL by subscription service when serving contexts for notifications
SUBSCRIPTION_STELLIO_URL=http://localhost:8090

CONTAINER_NAME_PREFIX=context-source-2-
+15 −0
Original line number Diff line number Diff line
# use this file with : docker compose --env-file .env --env-file .context-source.env -p stellio-context-source up
API_GATEWAY_PORT=8092
KAFKA_PORT=29095
POSTGRES_PORT=5435
SEARCH_SERVICE_PORT=18092
SUBSCRIPTION_SERVICE_PORT=28092

# Used by subscription service when searching entities for recurring subscriptions
# (those defined with a timeInterval parameter)
SUBSCRIPTION_ENTITY_SERVICE_URL=http://search-service:8093

# Used as a base URL by subscription service when serving contexts for notifications
SUBSCRIPTION_STELLIO_URL=http://localhost:8090

CONTAINER_NAME_PREFIX=context-source-3-
Loading