Skip to content

Commit

Permalink
Change hopr-admin port on 2.1.7 (#150)
Browse files Browse the repository at this point in the history
* Change hopr-admin port on 2.1.7

* update doc

* specify network

* Install docker-compose

* add docker compose

* use different version
  • Loading branch information
ausias-armesto authored Oct 15, 2024
1 parent bcc07e1 commit e7c8359
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Set up Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Build and upload to IPFS
run: |
npm install
Expand Down
14 changes: 12 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Set up Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Build and publish to package repository
id: publish
run: |
Expand Down Expand Up @@ -38,6 +48,6 @@ jobs:
to: "Releases"
topic: "main"
content: |
A new hoprd dAppNode package version is available.
A new hoprd dAppNode package (dufour) version is available.
- IPFS Hash: ${{ steps.publish.outputs.ipfs_hash }}
Access to your dAppNode and check for the updates
7 changes: 3 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
version: "3.5"
services:
node:
# Do not set image name here, it will be set automatically by the sdk.
# image: "node.hopr.public.dappnode.eth:1.0.21"
# Do not set image field here, it will be set automatically by the sdk.
build:
context: .
args:
Expand Down Expand Up @@ -54,9 +53,9 @@ services:
build:
context: ./hopr-admin
image: >-
europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:2.1.6
europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:2.1.6.1
ports:
- "3000:80"
- "3000:4677"
restart: unless-stopped
deploy:
resources:
Expand Down

0 comments on commit e7c8359

Please sign in to comment.