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
14 changes: 9 additions & 5 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,15 @@ jobs:
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=2.1.0,enable=${{ matrix.component.name == 'dcrd' && github.ref_type == 'tag' }}
type=raw,value=2.1,enable=${{ matrix.component.name == 'dcrd' && github.ref_type == 'tag' }}
type=raw,value=2.1.0,enable=${{ matrix.component.name == 'dcrwallet' && github.ref_type == 'tag' }}
type=raw,value=2.1,enable=${{ matrix.component.name == 'dcrwallet' && github.ref_type == 'tag' }}
type=semver,pattern={{version}},enable=${{ matrix.component.name == 'dashboard' }}
type=semver,pattern={{major}}.{{minor}},enable=${{ matrix.component.name == 'dashboard' }}
type=semver,pattern={{major}},enable=${{ matrix.component.name == 'dashboard' }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
Expand All @@ -80,5 +84,5 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
${{ matrix.component.name == 'dcrd' && 'DCRD_VERSION=release-v2.0.6' || '' }}
${{ matrix.component.name == 'dcrwallet' && 'DCRWALLET_VERSION=release-v2.0.6' || '' }}
${{ matrix.component.name == 'dcrd' && 'DCRD_VERSION=release-v2.1.0' || '' }}
${{ matrix.component.name == 'dcrwallet' && 'DCRWALLET_VERSION=release-v2.1.0' || '' }}
2 changes: 1 addition & 1 deletion dcrd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk add --no-cache git openssl
WORKDIR /go/src/github.com/decred

# Clone the dcrd repository
ARG DCRD_VERSION=master
ARG DCRD_VERSION=release-v2.1.0
RUN git clone --depth 1 --branch ${DCRD_VERSION} https://github.com/decred/dcrd.git

# Build dcrd
Expand Down
22 changes: 21 additions & 1 deletion dcrpulse-umbrel/images/dcrpulse.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed dcrpulse-umbrel/images/screenshot_1.jpg
Binary file not shown.
Binary file added dcrpulse-umbrel/images/screenshot_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed dcrpulse-umbrel/images/screenshot_2.jpg
Binary file not shown.
Binary file added dcrpulse-umbrel/images/screenshot_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed dcrpulse-umbrel/images/screenshot_3.jpg
Binary file not shown.
Binary file added dcrpulse-umbrel/images/screenshot_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions dcrpulse-umbrel/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ description: >-

Features:

- Full Decred node (dcrd v2.0.6)
- Full Decred node (dcrd v2.1.0)

- Wallet support (dcrwallet v2.0.6)
- Wallet support (dcrwallet v2.1.0)

- Modern block explorer

Expand Down
2 changes: 1 addition & 1 deletion dcrwallet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apk add --no-cache git openssl
WORKDIR /go/src/github.com/decred

# Clone the dcrwallet repository
ARG DCRWALLET_VERSION=master
ARG DCRWALLET_VERSION=release-v2.1.0
RUN git clone --depth 1 --branch ${DCRWALLET_VERSION} https://github.com/decred/dcrwallet.git

# Build dcrwallet
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: ./dcrd
args:
DCRD_VERSION: ${DCRD_VERSION:-release-v2.0.6}
DCRD_VERSION: ${DCRD_VERSION:-release-v2.1.0}
container_name: dcrpulse-dcrd
ports:
- "9108:9108"
Expand Down Expand Up @@ -41,7 +41,7 @@ services:
build:
context: ./dcrwallet
args:
DCRWALLET_VERSION: ${DCRWALLET_VERSION:-release-v2.0.6}
DCRWALLET_VERSION: ${DCRWALLET_VERSION:-release-v2.1.0}
container_name: dcrpulse-dcrwallet
ports:
- "9110:9110"
Expand Down
12 changes: 6 additions & 6 deletions env.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ DCRWALLET_RPC_PASS=change_this_to_a_secure_wallet_password

# Build Configuration
# Only used if building from source (no image tags set above)
# Optional: dcrd version/branch to build (default: release-v2.0.6)
# Can be a tag (e.g., release-v2.0.6) or branch name
#DCRD_VERSION=release-v2.0.6
# Optional: dcrd version/branch to build (default: release-v2.1.0)
# Can be a tag (e.g., release-v2.1.0) or branch name
#DCRD_VERSION=release-v2.1.0

# Optional: dcrwallet version/branch to build (default: release-v2.0.6)
# Can be a tag (e.g., release-v4.0.0) or branch name
#DCRWALLET_VERSION=release-v2.0.6
# Optional: dcrwallet version/branch to build (default: release-v2.1.0)
# Can be a tag (e.g., release-v2.1.0) or branch name
#DCRWALLET_VERSION=release-v2.1.0

# dcrd Extra Arguments
# Enable transaction index for block explorer functionality
Expand Down