Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Update docker-compose.yml to use new Dockerfiles #47

Merged
merged 2 commits into from
Dec 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Hardcode core + full pod IPs utilizing Calico CNI IPAM to allow for persistent p2p connections.
- Add devnet/k8s/README.md with instructions for setting up minimum viable k8s cluster
- Update minikube GH action to standup Minimum Viable Cluster (MVC) and test that core nodes produce a block
- Update docker-compose to take genesis.json file and gentx/ dir as volume mounts
- Update docker-compose to take genesis.json file and gentx/ dir as volume mounts
- Update the docker-compose.yml to use the new Docker images created in PRs ([#163](https://github.com/celestiaorg/celestia-app/pull/163)) and ([#295](https://github.com/celestiaorg/celestia-node/pull/295))
56 changes: 44 additions & 12 deletions devnet/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
core0:
container_name: core0
image: "jbowen93/celestia-app:devnet"
image: "jbowen93/celestia-app:multi"
command: [
"start",
"--p2p.persistent_peers",
Expand All @@ -23,7 +23,7 @@ services:

core1:
container_name: core1
image: "jbowen93/celestia-app:devnet"
image: "jbowen93/celestia-app:multi"
command: [
"start",
"--p2p.persistent_peers",
Expand All @@ -43,7 +43,7 @@ services:

core2:
container_name: core2
image: "jbowen93/celestia-app:devnet"
image: "jbowen93/celestia-app:multi"
command: [
"start",
"--p2p.persistent_peers",
Expand All @@ -63,7 +63,7 @@ services:

core3:
container_name: core3
image: "jbowen93/celestia-app:devnet"
image: "jbowen93/celestia-app:multi"
command: [
"start",
"--p2p.persistent_peers",
Expand All @@ -83,8 +83,12 @@ services:

full0:
container_name: full0
image: "jbowen93/celestia-node-full:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=full
- SLEEP=25s
command: [
"celestia", "full",
"--repo.path", "/celestia-full",
"start",
"--core.remote",
Expand All @@ -101,8 +105,12 @@ services:

full1:
container_name: full1
image: "jbowen93/celestia-node-full:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=full
- SLEEP=25s
command: [
"celestia", "full",
"--repo.path", "/celestia-full",
"start",
"--core.remote",
Expand All @@ -119,8 +127,12 @@ services:

full2:
container_name: full2
image: "jbowen93/celestia-node-full:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=full
- SLEEP=25s
command: [
"celestia", "full",
"--repo.path", "/celestia-full",
"start",
"--core.remote",
Expand All @@ -137,8 +149,12 @@ services:

full3:
container_name: full3
image: "jbowen93/celestia-node-full:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=full
- SLEEP=25s
command: [
"celestia", "full",
"--repo.path", "/celestia-full",
"start",
"--core.remote",
Expand All @@ -155,8 +171,12 @@ services:

light0:
container_name: light0
image: "jbowen93/celestia-node-light:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=light
- SLEEP=45s
command: [
"celestia", "light",
"--repo.path", "/celestia-light",
"start",
"--headers.trusted-peer",
Expand All @@ -173,8 +193,12 @@ services:

light1:
container_name: light1
image: "jbowen93/celestia-node-light:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=light
- SLEEP=45s
command: [
"celestia", "light",
"--repo.path", "/celestia-light",
"start",
"--headers.trusted-peer",
Expand All @@ -191,8 +215,12 @@ services:

light2:
container_name: light2
image: "jbowen93/celestia-node-light:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=light
- SLEEP=45s
command: [
"celestia", "light",
"--repo.path", "/celestia-light",
"start",
"--headers.trusted-peer",
Expand All @@ -209,8 +237,12 @@ services:

light3:
container_name: light3
image: "jbowen93/celestia-node-light:devnet"
image: "jbowen93/celestia-node:multi"
environment:
- NODE_TYPE=light
- SLEEP=45s
command: [
"celestia", "light",
"--repo.path", "/celestia-light",
"start",
"--headers.trusted-peer",
Expand Down