forked from Layr-Labs/eigenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-internal.yaml
37 lines (37 loc) · 1.11 KB
/
docker-compose-internal.yaml
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
# This file is used for building and pushing images
services:
batcher:
build:
context: .
dockerfile: disperser/cmd/batcher/Dockerfile
image: ghcr.io/layr-labs/eigenda/batcher:${BUILD_TAG:-latest}
disperser:
build:
context: .
dockerfile: disperser/cmd/apiserver/Dockerfile
image: ghcr.io/layr-labs/eigenda/disperser:${BUILD_TAG:-latest}
encoder:
build:
context: .
dockerfile: disperser/cmd/encoder/Dockerfile
image: ghcr.io/layr-labs/eigenda/encoder:${BUILD_TAG:-latest}
retriever:
build:
context: .
dockerfile: retriever/cmd/Dockerfile
image: ghcr.io/layr-labs/eigenda/retriever:${BUILD_TAG:-latest}
node:
build:
context: .
dockerfile: node/cmd/Dockerfile
image: ghcr.io/layr-labs/eigenda/node:${BUILD_TAG:-latest}
churner:
build:
context: .
dockerfile: operators/churner/cmd/Dockerfile
image: ghcr.io/layr-labs/eigenda/churner:${BUILD_TAG:-latest}
nodeplugin:
build:
context: .
dockerfile: node/plugin/cmd/Dockerfile
image: ghcr.io/layr-labs/eigenda/nodeplugin:${BUILD_TAG:-latest}