OpenC3/cosmos

View on GitHub
compose-build.yaml

Summary

Maintainability
Test Coverage
# encoding: ascii-8bit

# Copyright 2022 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.

# Modified by OpenC3, Inc.
# All changes Copyright 2022, OpenC3, Inc.
# All Rights Reserved
#
# This file may also be used under the terms of a commercial license
# if purchased from OpenC3, Inc.

services:
  openc3-ruby:
    build:
      context: "openc3-ruby"
      network: host
      args:
        ALPINE_VERSION: ${ALPINE_VERSION}
        ALPINE_BUILD: ${ALPINE_BUILD}
        APK_URL: ${APK_URL}
        RUBYGEMS_URL: ${RUBYGEMS_URL}
        PYPI_URL: ${PYPI_URL}
        OPENC3_DEPENDENCY_REGISTRY: ${OPENC3_DEPENDENCY_REGISTRY}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-ruby:${OPENC3_TAG}"

  openc3-base:
    build:
      context: "openc3"
      network: host
      args:
        OPENC3_REGISTRY: ${OPENC3_REGISTRY}
        OPENC3_NAMESPACE: ${OPENC3_NAMESPACE}
        OPENC3_TAG: ${OPENC3_TAG}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-base:${OPENC3_TAG}"
    depends_on:
      - "openc3-ruby"

  openc3-node:
    build:
      context: "openc3-node"
      network: host
      args:
        OPENC3_REGISTRY: ${OPENC3_REGISTRY}
        OPENC3_NAMESPACE: ${OPENC3_NAMESPACE}
        OPENC3_TAG: ${OPENC3_TAG}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-node:${OPENC3_TAG}"
    depends_on:
      - "openc3-base"

  openc3-minio:
    build:
      context: "openc3-minio"
      network: host
      args:
        OPENC3_DEPENDENCY_REGISTRY: ${OPENC3_DEPENDENCY_REGISTRY}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-minio:${OPENC3_TAG}"

  openc3-redis:
    build:
      context: "openc3-redis"
      network: host
      args:
        OPENC3_DEPENDENCY_REGISTRY: ${OPENC3_DEPENDENCY_REGISTRY}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-redis:${OPENC3_TAG}"

  openc3-cosmos-cmd-tlm-api:
    build:
      context: "openc3-cosmos-cmd-tlm-api"
      network: host
      args:
        OPENC3_REGISTRY: ${OPENC3_REGISTRY}
        OPENC3_NAMESPACE: ${OPENC3_NAMESPACE}
        OPENC3_TAG: ${OPENC3_TAG}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-cosmos-cmd-tlm-api:${OPENC3_TAG}"
    depends_on:
      - "openc3-base"

  openc3-cosmos-script-runner-api:
    build:
      context: "openc3-cosmos-script-runner-api"
      network: host
      args:
        OPENC3_REGISTRY: ${OPENC3_REGISTRY}
        OPENC3_NAMESPACE: ${OPENC3_NAMESPACE}
        OPENC3_TAG: ${OPENC3_TAG}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-cosmos-script-runner-api:${OPENC3_TAG}"
    depends_on:
      - "openc3-base"

  openc3-operator:
    build:
      context: "openc3-operator"
      network: host
      args:
        OPENC3_REGISTRY: ${OPENC3_REGISTRY}
        OPENC3_NAMESPACE: ${OPENC3_NAMESPACE}
        OPENC3_TAG: ${OPENC3_TAG}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-operator:${OPENC3_TAG}"
    depends_on:
      - "openc3-base"

  openc3-traefik:
    build:
      context: "openc3-traefik"
      network: host
      args:
        OPENC3_DEPENDENCY_REGISTRY: ${OPENC3_DEPENDENCY_REGISTRY}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-traefik:${OPENC3_TAG}"

  openc3-cosmos-init:
    build:
      context: "openc3-cosmos-init"
      additional_contexts:
        docs: "docs.openc3.com"
      network: host
      args:
        NPM_URL: ${NPM_URL}
        OPENC3_DEPENDENCY_REGISTRY: ${OPENC3_DEPENDENCY_REGISTRY}
        OPENC3_REGISTRY: ${OPENC3_REGISTRY}
        OPENC3_NAMESPACE: ${OPENC3_NAMESPACE}
        OPENC3_TAG: ${OPENC3_TAG}
    image: "${OPENC3_REGISTRY}/${OPENC3_NAMESPACE}/openc3-cosmos-init:${OPENC3_TAG}"
    depends_on:
      - "openc3-node"
      - "openc3-base"