2020-09-02 17:43:48 +03:00
|
|
|
version: '3.8'
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
ultimate:
|
|
|
|
external: true
|
2019-05-09 12:03:18 +02:00
|
|
|
services:
|
|
|
|
parity1:
|
2020-12-20 01:15:46 +03:00
|
|
|
container_name: parity1
|
2019-05-20 13:38:31 +02:00
|
|
|
build: ../parity
|
2019-05-09 12:03:18 +02:00
|
|
|
ports:
|
|
|
|
- "8541:8545"
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-05-09 12:03:18 +02:00
|
|
|
parity2:
|
2020-12-20 01:15:46 +03:00
|
|
|
container_name: parity2
|
2019-05-09 12:03:18 +02:00
|
|
|
build:
|
2019-05-20 13:38:31 +02:00
|
|
|
context: ../parity
|
2019-05-09 12:03:18 +02:00
|
|
|
dockerfile: Dockerfile-foreign
|
|
|
|
ports:
|
|
|
|
- "8542:8545"
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-05-09 12:03:18 +02:00
|
|
|
redis:
|
|
|
|
image: "redis:4"
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-05-09 12:03:18 +02:00
|
|
|
rabbit:
|
|
|
|
image: "rabbitmq:3-management"
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-05-31 16:24:45 +02:00
|
|
|
oracle-erc20-native:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-oracle:${ORACLE_TAG:-local}
|
2020-02-03 18:48:28 -03:00
|
|
|
env_file: ../e2e-commons/components-envs/oracle-erc20-native.env
|
2019-05-09 12:03:18 +02:00
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
|
|
|
command: "true"
|
2020-09-28 14:54:03 +03:00
|
|
|
volumes:
|
|
|
|
- '../e2e-commons/access-lists/block_list.txt:/mono/oracle/access-lists/block_list.txt'
|
|
|
|
- '../e2e-commons/access-lists/allowance_list.txt:/mono/oracle/access-lists/allowance_list.txt'
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-10-21 15:57:28 +03:00
|
|
|
oracle-amb:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-oracle:${ORACLE_TAG:-local}
|
2021-05-08 09:50:46 -06:00
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: oracle/Dockerfile
|
2020-02-03 18:48:28 -03:00
|
|
|
env_file: ../e2e-commons/components-envs/oracle-amb.env
|
2019-10-21 15:57:28 +03:00
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
|
|
|
command: "true"
|
2020-10-31 21:02:56 +03:00
|
|
|
volumes:
|
|
|
|
- '../e2e-commons/access-lists/block_list.txt:/mono/oracle/access-lists/block_list.txt'
|
|
|
|
- '../e2e-commons/access-lists/allowance_list.txt:/mono/oracle/access-lists/allowance_list.txt'
|
2019-10-21 15:57:28 +03:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2020-07-29 07:30:36 -03:00
|
|
|
alm:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-alm:${ALM_TAG:-local}
|
2020-07-29 07:30:36 -03:00
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: alm/Dockerfile
|
|
|
|
args:
|
|
|
|
DOT_ENV_PATH: e2e-commons/components-envs/alm.env
|
|
|
|
command: "true"
|
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-08-01 10:26:20 +02:00
|
|
|
monitor-erc20-native:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-monitor:${MONITOR_TAG:-local}
|
2020-02-21 16:56:55 +03:00
|
|
|
env_file: ../e2e-commons/components-envs/monitor-erc20-native.env
|
2019-08-27 16:26:49 +02:00
|
|
|
entrypoint: yarn check-and-start
|
2019-08-01 10:26:20 +02:00
|
|
|
ports:
|
|
|
|
- "3012:3012"
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-11-13 03:51:11 -03:00
|
|
|
monitor-amb:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-monitor:${MONITOR_TAG:-local}
|
2021-05-08 09:50:46 -06:00
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: monitor/Dockerfile
|
2020-02-21 16:56:55 +03:00
|
|
|
env_file: ../e2e-commons/components-envs/monitor-amb.env
|
2019-11-13 03:51:11 -03:00
|
|
|
entrypoint: yarn check-and-start
|
|
|
|
ports:
|
|
|
|
- "3013:3013"
|
|
|
|
networks:
|
|
|
|
- ultimate
|
2019-05-21 16:27:47 +02:00
|
|
|
e2e:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-e2e:${E2E_TAG:-local}
|
2019-05-22 16:25:32 +02:00
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: Dockerfile.e2e
|
2019-05-21 16:27:47 +02:00
|
|
|
command: "true"
|
2019-07-26 10:14:25 +02:00
|
|
|
networks:
|
|
|
|
- ultimate
|
2020-02-11 20:50:34 +03:00
|
|
|
blocks:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-e2e:${E2E_TAG:-local}
|
2020-02-11 20:50:34 +03:00
|
|
|
entrypoint: node e2e-commons/scripts/blocks.js
|
|
|
|
networks:
|
|
|
|
- ultimate
|
2020-07-14 21:53:05 +07:00
|
|
|
molecule_runner:
|
2020-09-02 17:43:48 +03:00
|
|
|
image: ${DOCKER_IMAGE_BASE:-tokenbridge}/tokenbridge-e2e-molecule_runner:${MOLECULE_RUNNER_TAG:-local}
|
2020-07-14 21:53:05 +07:00
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: deployment-e2e/Dockerfile
|
|
|
|
restart: 'no'
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
- ..:/mono
|