Merge "Update to gitea 1.17.3"

This commit is contained in:
Zuul 2022-10-17 00:54:05 +00:00 committed by Gerrit Code Review
commit 089cb47757
2 changed files with 5 additions and 2 deletions

View File

@ -27,7 +27,7 @@ FROM docker.io/library/golang:1.18-bullseye AS build-env
LABEL maintainer="infra-root@openstack.org"
ARG GITEA_VERSION="v1.17.2"
ARG GITEA_VERSION="v1.17.3"
ENV TAGS "bindata $TAGS"
#Build deps

View File

@ -70,7 +70,10 @@
chdir: /etc/gitea-docker/
- name: Run docker prune to cleanup unneeded images
shell:
cmd: docker image prune -f
# Keep images around for 3 days before pruning them. Allows for
# easy rollback if necessary. Note "3d" seems to be rejected by
# docker but 72 hours == 3 days.
cmd: docker image prune -f --filter "until=72h"
# User management outside of service bringup to avoid confusion between
# the two stages.