This repository was archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.build.yml
More file actions
38 lines (37 loc) · 1.45 KB
/
docker-compose.build.yml
File metadata and controls
38 lines (37 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '3.8'
services:
cic-cache:
image: ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-cache:${TAG:-latest}
build:
context: apps/cic-cache
dockerfile: docker/Dockerfile
cache_from:
- ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-cache:latest
cic-eth:
image: ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-eth:${TAG:-latest}
build:
context: apps/cic-eth
dockerfile: docker/Dockerfile
cache_from:
- ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-eth:latest
cic-meta:
image: ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-meta:${TAG:-latest}
build:
context: apps/cic-meta
dockerfile: docker/Dockerfile
cache_from:
- ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-meta:latest
cic-signer:
image: ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-signer:${TAG:-latest}
build:
context: apps/cic-signer
dockerfile: Dockerfile
cache_from:
- ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-signer:latest
cic-contract-bootstrap:
image: ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-contract-bootstrap:${TAG:-latest}
build:
context: apps/contract-migration
dockerfile: docker/Dockerfile
cache_from:
- ${IMAGE_BASE_URL:-ghcr.io/grassrootseconomics/cic-stack}/cic-contract-bootstrap:latest