Skip to content
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
21 changes: 21 additions & 0 deletions docker-compose.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,25 @@ services:
# Forknet: https://github.com/LayerTwo-Labs/faucet-frontend-forknet-server/pkgs/container/faucet-frontend
image: ghcr.io/layertwo-labs/faucet-frontend-${NETWORK}-server:sha-75219b6

coinnews:
restart: unless-stopped
image: ghcr.io/layertwo-labs/coinnews-server:sha-9593680
pull_policy: always
secrets:
- source: bitcoind-${NETWORK}-cookie
target: /cookie
environment:
COINNEWS_BITCOIND_URL: http://${CORE_RPC_ADDR}
COINNEWS_BITCOIND_COOKIE: /cookie
COINNEWS_NETWORK: ${NETWORK}
COINNEWS_DB: /data/coinnews.db
volumes:
- coinnews-data:/data
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost:8080/healthz"]
ports:
- "8989:8080" # ConnectRPC API + /healthz, exposed to the internet

# Can be used to run a container with the same volumes as the other services.
# $ docker compose run --rm busybox sh

Expand All @@ -485,6 +504,7 @@ services:
- enforcer-data:/enforcer-data
- thunder-data:/thunder-data
- zside-data:/zside-data
- coinnews-data:/coinnews-data
- logs-data:/logs

buf:
Expand All @@ -511,3 +531,4 @@ volumes:
coinshift-data:
photon-data:
truthcoin-data:
coinnews-data:
4 changes: 4 additions & 0 deletions docker-compose.signet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ services:
profiles:
- signet

coinnews:
profiles:
- signet

# Paths to secrets refer to the (remote) host machine.
secrets:
# IMPORTANT: this needs to be a file WITHOUT a trailing newline
Expand Down
Loading