Merge branch '8.0.6'

This commit is contained in:
Gerrit Gogel 2021-07-22 14:59:50 +02:00
commit 11f5f4204f
6 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,7 @@
version: '3.8'
services:
seafile-server:
image: ggogel/seafile-server:8.0.5
image: ggogel/seafile-server:8.0.6
volumes:
- seafile-data:/shared
environment:
@ -18,7 +18,7 @@ services:
endpoint_mode: dnsrr
seahub:
image: ggogel/seahub:8.0.5
image: ggogel/seahub:8.0.6
volumes:
- seafile-data:/shared
- seahub-avatars:/shared/seafile/seahub-data/avatars

View file

@ -1,7 +1,7 @@
version: '3.8'
services:
seafile-server:
image: ggogel/seafile-server:8.0.5
image: ggogel/seafile-server:8.0.6
volumes:
- seafile-data:/shared
environment:
@ -19,7 +19,7 @@ services:
- seafile-net
seahub:
image: ggogel/seahub:8.0.5
image: ggogel/seahub:8.0.6
volumes:
- seafile-data:/shared
- seahub-avatars:/shared/seafile/seahub-data/avatars
@ -34,7 +34,7 @@ services:
- seafile-net
seahub-media:
image: ggogel/seahub-media:8.0.5
image: ggogel/seahub-media:8.0.6
volumes:
- seahub-avatars:/usr/share/caddy/media/avatars
- seahub-custom:/usr/share/caddy/media/custom

View file

@ -1,4 +1,4 @@
FROM caddy:2.3.0-alpine
FROM caddy:2.4.3-alpine
RUN apk add --no-cache \
bash \

View file

@ -1,15 +1,15 @@
FROM alpine:3.13 AS get
FROM alpine:3.13.5 AS get
RUN apk add --no-cache wget
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.5
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.6
RUN cd /tmp && \
wget https://download.seadrive.org/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz && \
tar -zxvf seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz && \
rm -f seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz
FROM ubuntu:bionic
FROM ubuntu:bionic-20210702
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
@ -28,7 +28,7 @@ python3-jinja2 \
python3-sqlalchemy \
&& rm -rf /var/lib/apt/lists/*
ENV SEAFILE_VERSION=8.0.5
ENV SEAFILE_VERSION=8.0.6
COPY --from=get /tmp/seafile-server-${SEAFILE_VERSION} /opt/seafile/seafile-server-${SEAFILE_VERSION}
COPY scripts /scripts

View file

@ -1,5 +1,5 @@
FROM alpine:3.13 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.5
FROM alpine:3.13.5 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.6
RUN apk add --no-cache wget

View file

@ -1,5 +1,5 @@
FROM alpine:3.13 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.5
FROM alpine:3.13.5 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.6
RUN apk add --no-cache wget
@ -12,7 +12,7 @@ RUN sed -i "s@.*INNER_FILE_SERVER_ROOT.*@INNER_FILE_SERVER_ROOT = os.environ.get
RUN sed -i '/warning_if_seafile_not_running;/d' /tmp/seafile-server-${SEAFILE_VERSION}/seahub.sh
FROM alpine:3.13 AS pip
FROM alpine:3.13.5 AS pip
RUN apk add --no-cache \
python3-dev \
@ -42,7 +42,7 @@ django-pylibmc \
django-simple-captcha \
&& rm -r /root/.cache/pip
FROM alpine:3.13
FROM alpine:3.13.5
RUN apk add --no-cache \
bash \