-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcompose.yaml
More file actions
25 lines (20 loc) · 810 Bytes
/
compose.yaml
File metadata and controls
25 lines (20 loc) · 810 Bytes
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
# Docker Compose is used for spinning up the local-da docker container along with the GM container.
version: "3"
services:
gm:
container_name: gm
# The build config can be used for debugging and testing changes to the GM Dockerfile
build: .
# The image config can be used for running against published GM images
# image: ghcr.io/rollkit/gm:19b894c
# Used for targetting localhost as if you were outside the container
network_mode: host
# The command config is used for launching the GM rollup once the Docker container is running
# command: rollkit start --rollkit.aggregator --rollkit.da_address http://localhost:7980
depends_on:
- local-da
local-da:
image: ghcr.io/rollkit/local-da:v0.2.1
container_name: local-da
ports:
- "7980:7980"