mirror of
https://github.com/sethforprivacy/p2pool-docker.git
synced 2025-12-07 16:05:05 -05:00
Compare commits
16 Commits
679ac1e87e
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
37d68bc1bd | ||
|
|
dae74873c4 | ||
|
|
d37c6f7bdf | ||
|
|
84ebde54dd | ||
|
|
e834b7e289 | ||
|
|
389cc18843 | ||
|
|
93c985963a | ||
|
|
8d209c335a | ||
|
|
2baed31844 | ||
|
|
c591b338f3 | ||
|
|
a1a95d5294 | ||
|
|
0bc7dba09d | ||
|
|
49019ab2f9 | ||
|
|
53c1baaaf2 | ||
|
|
1fdd47de76 | ||
|
|
f2a46b8a21 |
2
.github/workflows/build-image-on-push.yml
vendored
2
.github/workflows/build-image-on-push.yml
vendored
@@ -40,7 +40,7 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v3.11.1
|
uses: docker/setup-buildx-action@v3.11.1
|
||||||
-
|
-
|
||||||
name: Checkout repository
|
name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
-
|
-
|
||||||
name: Test build of image
|
name: Test build of image
|
||||||
id: build
|
id: build
|
||||||
|
|||||||
12
.github/workflows/update-image-on-push.yml
vendored
12
.github/workflows/update-image-on-push.yml
vendored
@@ -43,14 +43,14 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v3.11.1
|
uses: docker/setup-buildx-action@v3.11.1
|
||||||
-
|
-
|
||||||
name: Login to GitHub Container Registry
|
name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v3.5.0
|
uses: docker/login-action@v3.6.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Checkout repository
|
name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
-
|
-
|
||||||
name: Build and and push by digest
|
name: Build and and push by digest
|
||||||
uses: docker/build-push-action@v6.18.0
|
uses: docker/build-push-action@v6.18.0
|
||||||
@@ -68,7 +68,7 @@ jobs:
|
|||||||
touch "${{ runner.temp }}/digests/${digest#sha256:}"
|
touch "${{ runner.temp }}/digests/${digest#sha256:}"
|
||||||
|
|
||||||
- name: Upload digest
|
- name: Upload digest
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: digests-${{ env.DIGEST_NAME }}
|
name: digests-${{ env.DIGEST_NAME }}
|
||||||
path: ${{ runner.temp }}/digests/*
|
path: ${{ runner.temp }}/digests/*
|
||||||
@@ -81,14 +81,14 @@ jobs:
|
|||||||
- build
|
- build
|
||||||
steps:
|
steps:
|
||||||
- name: Download digests
|
- name: Download digests
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v6
|
||||||
with:
|
with:
|
||||||
path: ${{ runner.temp }}/digests
|
path: ${{ runner.temp }}/digests
|
||||||
pattern: digests-*
|
pattern: digests-*
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
- name: Login to GHCR
|
- name: Login to GHCR
|
||||||
uses: docker/login-action@v3.5.0
|
uses: docker/login-action@v3.6.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
@@ -98,7 +98,7 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v3.11.1
|
uses: docker/setup-buildx-action@v3.11.1
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Get p2pool release tag
|
- name: Get p2pool release tag
|
||||||
run: echo P2POOL_TAG="$(awk -F '=' '/P2POOL_BRANCH=/ {print $2}' Dockerfile)" >> $GITHUB_ENV
|
run: echo P2POOL_TAG="$(awk -F '=' '/P2POOL_BRANCH=/ {print $2}' Dockerfile)" >> $GITHUB_ENV
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
ARG P2POOL_BRANCH=v4.9
|
ARG P2POOL_BRANCH=v4.12
|
||||||
|
|
||||||
# Select latest Ubuntu LTS for the build image base
|
# Select latest Ubuntu LTS for the build image base
|
||||||
FROM ubuntu:latest as build
|
FROM ubuntu:latest as build
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
version: '3.5'
|
|
||||||
services:
|
services:
|
||||||
monerod:
|
monerod:
|
||||||
image: sethsimmons/simple-monerod:latest
|
image: ghcr.io/sethforprivacy/simple-monerod:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: monerod
|
container_name: monerod
|
||||||
volumes:
|
volumes:
|
||||||
@@ -21,7 +20,7 @@ services:
|
|||||||
- "--out-peers=50"
|
- "--out-peers=50"
|
||||||
|
|
||||||
p2pool:
|
p2pool:
|
||||||
image: sethsimmons/p2pool:latest
|
image: ghcr.io/sethforprivacy/p2pool:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: p2pool
|
container_name: p2pool
|
||||||
tty: true
|
tty: true
|
||||||
@@ -52,15 +51,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- tor-keys:/var/lib/tor/hidden_service/
|
- 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:
|
watchtower:
|
||||||
image: containrrr/watchtower:latest
|
image: containrrr/watchtower:latest
|
||||||
container_name: watchtower
|
container_name: watchtower
|
||||||
|
|||||||
Reference in New Issue
Block a user