Skip to content

Commit

Permalink
Merge pull request #141 from dappnode/dappnodebot/bump-upstream/aleph…
Browse files Browse the repository at this point in the history
[email protected]

bump alephium/alephium to v2.12.0
  • Loading branch information
mgarciate authored Apr 9, 2024
2 parents 9461c05 + cc6326d commit a6ffc13
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alephium.dnp.dappnode.eth",
"version": "0.1.26",
"upstreamVersion": "v2.11.1",
"version": "0.1.27",
"upstreamVersion": "v2.12.0",
"upstreamRepo": "alephium/alephium",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "A new paradigm",
Expand Down
34 changes: 17 additions & 17 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: "3.4"
services:
alephium:
image: "alephium.alephium.dnp.dappnode.eth:0.1.0"
image: alephium.alephium.dnp.dappnode.eth:0.1.0
build:
context: alephium
args:
UPSTREAM_VERSION: v2.11.1
UPSTREAM_VERSION: v2.12.0
restart: unless-stopped
ports:
- "9973:9973/tcp"
- "9973:9973/udp"
- 9973:9973/tcp
- 9973:9973/udp
security_opt:
- "no-new-privileges:true"
- no-new-privileges:true
volumes:
- "alephium-data:/alephium-home/.alephium"
- "alephium-wallets:/alephium-home/.alephium-wallets"
- alephium-data:/alephium-home/.alephium
- alephium-wallets:/alephium-home/.alephium-wallets
environment:
- ALEPHIUM_FORCE_RELOAD_SNAPSHOT=0
- INITIALIZING_FROM_SNAPSHOT=disabled
Expand All @@ -23,29 +23,29 @@ services:
test:
- CMD
- curl
- "http://127.0.0.1:12973/infos/self-clique"
- http://127.0.0.1:12973/infos/self-clique
timeout: 45s
postgres:
image: "postgres.alephium.dnp.dappnode.eth:0.1.0"
image: postgres.alephium.dnp.dappnode.eth:0.1.0
build:
context: postgres
user: postgres
environment:
- EXPLORER_ENABLED=disabled
restart: unless-stopped
volumes:
- "postgres_data:/var/lib/postgresql/14/main"
- postgres_data:/var/lib/postgresql/14/main
explorer-backend:
image: "explorer-backend.alephium.dnp.dappnode.eth:0.1.0"
image: explorer-backend.alephium.dnp.dappnode.eth:0.1.0
build:
context: explorer-backend
depends_on:
alephium:
condition: service_healthy
restart: unless-stopped
security_opt:
- "seccomp:unconfined"
- "no-new-privileges:true"
- seccomp:unconfined
- no-new-privileges:true
environment:
- EXPLORER_HOST=0.0.0.0
- EXPLORER_PORT=9090
Expand All @@ -62,22 +62,22 @@ services:
test:
- CMD
- curl
- "http://127.0.0.1:$${EXPLORER_PORT:-9090}/infos"
- http://127.0.0.1:$${EXPLORER_PORT:-9090}/infos
timeout: 45s
interval: 30s
retries: 10
explorer-frontend:
image: "explorer-frontend.alephium.dnp.dappnode.eth:0.1.0"
image: explorer-frontend.alephium.dnp.dappnode.eth:0.1.0
build:
context: explorer-frontend
depends_on:
- explorer-backend
restart: unless-stopped
security_opt:
- "no-new-privileges:true"
- no-new-privileges:true
environment:
- EXPLORER_ENABLED=disabled
- "VITE_BACKEND_URL=http://explorer-backend.alephium.dappnode:9090"
- VITE_BACKEND_URL=http://explorer-backend.alephium.dappnode:9090
- VITE_NETWORK_TYPE=mainnet
volumes:
alephium-data: {}
Expand Down

0 comments on commit a6ffc13

Please sign in to comment.