[add] use i2pd version 2.53.0 by default

This commit is contained in:
oldnick85
2024-08-01 21:30:39 +03:00
parent 0159ac966f
commit 0d58a40bb0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
ARG UBUNTU_VERSION=24.04
FROM ubuntu:${UBUNTU_VERSION} AS builder_i2pd
ARG I2PD_VERSION=2.52.0
ARG I2PD_VERSION=2.53.0
ARG I2PD_COMPILER=gcc
RUN DEBIAN_FRONTEND=noninteractive\
apt-get update &&\
+1 -1
View File
@@ -3,7 +3,7 @@ version: "3.3"
services:
# I2PD_YGGDRASIL
i2pd_yggdrasil:
image: i2pd_yggdrasil:latest
image: i2pd_yggdrasil:${APP_VERSION:-latest}
container_name: i2pd_yggdrasil
privileged: true
cap_add:
+1 -1
View File
@@ -2,7 +2,7 @@
TAG_VERSION=$(git describe --tags || echo "unknown")
docker build --file="src/Dockerfile" \
--build-arg UBUNTU_VERSION=24.04 \
--build-arg I2PD_VERSION=2.52.0 \
--build-arg I2PD_VERSION=2.53.0 \
--build-arg I2PD_COMPILER=gcc \
--build-arg YGGDRASIL_VERSION=v0.5.6 \
--tag i2pd_yggdrasil:${TAG_VERSION} \