Merge branch '9.0.1'

This commit is contained in:
Gerrit Gogel 2021-11-20 12:58:17 +03:00
commit c88b32a873
5 changed files with 16 additions and 18 deletions

View file

@ -1,7 +1,7 @@
version: '3.8'
services:
seafile-server:
image: ggogel/seafile-server:9.0.0
image: ggogel/seafile-server:9.0.1
volumes:
- seafile-data:/shared
environment:
@ -18,7 +18,7 @@ services:
endpoint_mode: dnsrr
seahub:
image: ggogel/seahub:9.0.0
image: ggogel/seahub:9.0.1
volumes:
- seafile-data:/shared
- seahub-avatars:/shared/seafile/seahub-data/avatars
@ -46,7 +46,7 @@ services:
endpoint_mode: dnsrr
db:
image: mariadb:latest
image: mariadb:10.7.1
environment:
- MYSQL_ROOT_PASSWORD=db_dev
- MYSQL_LOG_CONSOLE=true
@ -56,7 +56,7 @@ services:
- seafile-net
memcached:
image: memcached:latest
image: memcached:1.6.12
entrypoint: memcached -m 1024
networks:
- seafile-net

View file

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

View file

@ -1,8 +1,8 @@
FROM alpine:3.13.6 AS get
FROM alpine:3.13.7 AS get
RUN apk add --no-cache wget
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=9.0.0
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=9.0.1
RUN cd /tmp && \
wget https://download.seadrive.org/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz && \
@ -30,7 +30,7 @@ python3-jinja2 \
python3-sqlalchemy \
&& rm -rf /var/lib/apt/lists/*
ENV SEAFILE_VERSION=9.0.0
ENV SEAFILE_VERSION=9.0.1
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.6 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=9.0.0
FROM alpine:3.13.7 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=9.0.1
RUN apk add --no-cache wget

View file

@ -1,5 +1,5 @@
FROM alpine:3.13.6 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=9.0.0
FROM alpine:3.13.7 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=9.0.1
RUN apk add --no-cache wget
@ -12,9 +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
RUN sed -i '1s;^;from django.core.cache import cache\n;' /tmp/seafile-server-${SEAFILE_VERSION}/seahub/seahub/onlyoffice/views.py
FROM alpine:3.13.6 AS pip
FROM alpine:3.13.7 AS pip
RUN apk add --no-cache \
python3-dev \
@ -44,7 +42,7 @@ django-pylibmc \
django-simple-captcha \
&& rm -r /root/.cache/pip
FROM alpine:3.13.6
FROM alpine:3.13.7
RUN apk add --no-cache \
bash \