Compare commits

...

14 Commits

Author SHA1 Message Date
Seth For Privacy
37d68bc1bd Merge pull request #130 from sethforprivacy/renovate/actions-checkout-6.x
Update actions/checkout action to v6
2025-11-20 13:25:41 -05:00
renovate[bot]
dae74873c4 Update actions/checkout action to v6 2025-11-20 17:46:57 +00:00
Seth For Privacy
d37c6f7bdf Bump to v4.12 2025-11-05 13:26:05 -05:00
Seth For Privacy
84ebde54dd Merge pull request #128 from sethforprivacy/renovate/actions-download-artifact-6.x 2025-10-26 12:35:08 -04:00
Seth For Privacy
e834b7e289 Merge pull request #127 from sethforprivacy/dependabot/github_actions/dependency-updates-3249c11fdc 2025-10-26 12:34:54 -04:00
renovate[bot]
389cc18843 Update actions/download-artifact action to v6 2025-10-24 20:02:31 +00:00
dependabot[bot]
93c985963a Bump the dependency-updates group with 2 updates
Bumps the dependency-updates group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/upload-artifact` from 4 to 5
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

Updates `actions/download-artifact` from 5 to 6
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: actions/download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-24 20:02:11 +00:00
Seth For Privacy
8d209c335a Merge pull request #126 from sethforprivacy/renovate/docker-login-action-3.x
Update docker/login-action action to v3.6.0
2025-09-29 09:02:37 -04:00
renovate[bot]
2baed31844 Update docker/login-action action to v3.6.0 2025-09-29 10:52:23 +00:00
Seth For Privacy
c591b338f3 Update docker-compose.yml 2025-09-28 09:08:39 -04:00
Seth For Privacy
a1a95d5294 Bump to v4.11 2025-09-27 09:21:18 -04:00
Seth For Privacy
0bc7dba09d Bump to v4.10.1 2025-09-10 06:53:06 -04:00
Seth For Privacy
49019ab2f9 Bump to v4.10 2025-09-09 05:37:30 -04:00
Seth For Privacy
53c1baaaf2 Bump to v4.9.1 2025-08-21 07:19:45 -04:00
4 changed files with 10 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ jobs:
uses: docker/setup-buildx-action@v3.11.1
-
name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
-
name: Test build of image
id: build

View File

@@ -43,14 +43,14 @@ jobs:
uses: docker/setup-buildx-action@v3.11.1
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3.5.0
uses: docker/login-action@v3.6.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
-
name: Build and and push by digest
uses: docker/build-push-action@v6.18.0
@@ -68,7 +68,7 @@ jobs:
touch "${{ runner.temp }}/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: digests-${{ env.DIGEST_NAME }}
path: ${{ runner.temp }}/digests/*
@@ -81,14 +81,14 @@ jobs:
- build
steps:
- name: Download digests
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
merge-multiple: true
- name: Login to GHCR
uses: docker/login-action@v3.5.0
uses: docker/login-action@v3.6.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
@@ -98,7 +98,7 @@ jobs:
uses: docker/setup-buildx-action@v3.11.1
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Get p2pool release tag
run: echo P2POOL_TAG="$(awk -F '=' '/P2POOL_BRANCH=/ {print $2}' Dockerfile)" >> $GITHUB_ENV

View File

@@ -1,4 +1,4 @@
ARG P2POOL_BRANCH=v4.9
ARG P2POOL_BRANCH=v4.12
# Select latest Ubuntu LTS for the build image base
FROM ubuntu:latest as build

View File

@@ -1,7 +1,6 @@
version: '3.5'
services:
monerod:
image: sethsimmons/simple-monerod:latest
image: ghcr.io/sethforprivacy/simple-monerod:latest
restart: unless-stopped
container_name: monerod
volumes:
@@ -21,7 +20,7 @@ services:
- "--out-peers=50"
p2pool:
image: sethsimmons/p2pool:latest
image: ghcr.io/sethforprivacy/p2pool:latest
restart: unless-stopped
container_name: p2pool
tty: true
@@ -52,15 +51,6 @@ services:
volumes:
- tor-keys:/var/lib/tor/hidden_service/
autoheal:
image: willfarrell/autoheal:latest
container_name: autoheal
restart: unless-stopped
environment:
AUTOHEAL_CONTAINER_LABEL: all
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower