Go to file
nolash cec96a4f63
Add shared env dumper
2021-09-10 09:22:25 +02:00
apps Add missing env vars to contract migration, correct env path on shared vol 2021-09-10 07:07:28 +02:00
ci_templates Faster local builds with base image and buildkit and run all unit tests 2021-07-10 15:46:14 +00:00
scripts docker vm builds 2021-08-28 16:26:16 +00:00
.gitignore reverting to fffb2bc3f4 2021-08-21 13:23:43 -04:00
.gitlab-ci.yml feat: add multi-project build to trigger deploy-k8s-dev in the devops repo 2021-09-09 21:28:49 +00:00
.gitmodules cic cache build 2021-02-18 05:04:30 +00:00
README.md update readme 2021-08-30 10:14:22 -07:00
docker-compose.yml Add missing env vars to contract migration, correct env path on shared vol 2021-09-10 07:07:28 +02:00
dump.sh Add shared env dumper 2021-09-10 09:22:25 +02:00

README.md

cic-internal-integration

Getting started

This repo uses docker-compose and docker buildkit. Set the following environment variables to get started:

export COMPOSE_DOCKER_CLI_BUILD=1
export DOCKER_BUILDKIT=1

start services, database, redis and local ethereum node

docker-compose up -d

Run app/contract-migration to deploy contracts

RUN_MASK=3 docker-compose up contract-migration

stop cluster

docker-compose down

stop cluster and delete data

docker-compose down -v

rebuild an images

docker-compose up --build <service_name>