All checks were successful
Lint Checks / Run linter (push) Successful in 38s
Lint Checks / Run linter (pull_request) Successful in 36s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m18s
Deploy Test / Run deploy test suite (pull_request) Successful in 6m14s
Smoke Test / Run basic test suite (pull_request) Successful in 4m49s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 10m17s
20 lines
594 B
YAML
20 lines
594 B
YAML
version: "3.2"
|
|
|
|
# This is a short-lived container. It runs the Vega build and then copies the output to the
|
|
# `urbit_app_builds` volume.
|
|
services:
|
|
vega-interface:
|
|
image: cerc/vega-interface:local
|
|
restart: on-failure
|
|
# environment:
|
|
# - REACT_APP_INFURA_KEY=${CERC_INFURA_KEY}
|
|
# - REACT_APP_AWS_API_ENDPOINT=${CERC_UNISWAP_GQL}
|
|
entrypoint: ["./build-app.sh"]
|
|
volumes:
|
|
- ../config/vega-interface/urbit-files:/app/urbit-files
|
|
- ../config/vega-interface/build-app.sh:/app/build-app.sh
|
|
- urbit_app_builds:/app-builds
|
|
|
|
volumes:
|
|
urbit_app_builds:
|