-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbc0b24
commit 37ffef3
Showing
4 changed files
with
69 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,6 @@ LOGS_LABEL=eth-docker | |
DOMAIN=example.com | ||
ACME_EMAIL=[email protected] | ||
CF_DNS_API_TOKEN=SECRETTOKEN | ||
CF_ZONE_API_TOKEN= | ||
CF_ZONE_ID= | ||
AWS_PROFILE=myprofile | ||
AWS_HOSTED_ZONE_ID=myzoneid | ||
|
@@ -292,12 +291,12 @@ DEPCLI_SRC_REPO=https://github.com/ethereum/staking-deposit-cli | |
# Does not (yet?) exist on Docker hub | ||
DEPCLI_DOCKER_TAG=nonesuch | ||
|
||
# traefik and cf-ddns | ||
# traefik and ddns-updater | ||
TRAEFIK_TAG=v2.10 | ||
DDNS_TAG=3 | ||
DDNS_TAG=v2 | ||
|
||
# For the Node Dashboard, define a regex of mount points to ignore for the diskspace check. | ||
NODE_EXPORTER_IGNORE_MOUNT_REGEX='^/(dev|proc|sys|run|var/lib/docker/.+)($|/)' | ||
|
||
# Used by ethd update - please do not adjust | ||
ENV_VERSION=7 | ||
ENV_VERSION=8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM debian:bookworm-slim | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl jq gosu |