Skip to content

Commit

Permalink
Merge branch '8.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
ggogel committed May 17, 2021
2 parents 73531a6 + 63e8de6 commit 9797239
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions compose/docker-compose-swarm.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'
services:
seafile-server:
image: ggogel/seafile-server:8.0.4
image: ggogel/seafile-server:8.0.5
volumes:
- seafile-data:/shared
environment:
Expand All @@ -18,7 +18,7 @@ services:
endpoint_mode: dnsrr

seahub:
image: ggogel/seahub:8.0.4
image: ggogel/seahub:8.0.5
volumes:
- seafile-data:/shared
- seahub-avatars:/shared/seafile/seahub-data/avatars
Expand Down
9 changes: 5 additions & 4 deletions compose/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
version: '3.8'
services:
seafile-server:
image: ggogel/seafile-server:8.0.4
image: ggogel/seafile-server:8.0.5
volumes:
- seafile-data:/shared
environment:
- DB_HOST=db
- DB_ROOT_PASSWD=db_dev
- TIME_ZONE=Europe/Berlin
- HTTPS=false # Set this to true if you plan to use a reverse proxy with HTTPS. Can be changed later in the admin settings on the web-ui.
- HTTPS=true
- SEAFILE_SERVER_LETSENCRYPT=true # Set this to true if you plan to use a reverse proxy with HTTPS. Can be changed later in the admin settings on the web-ui.
- SEAFILE_SERVER_HOSTNAME=seafile.mydomain.com # Mandatory on first deployment!
depends_on:
- db
Expand All @@ -18,7 +19,7 @@ services:
- seafile-net

seahub:
image: ggogel/seahub:8.0.4
image: ggogel/seahub:8.0.5
volumes:
- seafile-data:/shared
- seahub-avatars:/shared/seafile/seahub-data/avatars
Expand All @@ -33,7 +34,7 @@ services:
- seafile-net

seahub-media:
image: ggogel/seahub-media:8.0.4
image: ggogel/seahub-media:8.0.5
volumes:
- seahub-avatars:/usr/share/caddy/media/avatars
- seahub-custom:/usr/share/caddy/media/custom
Expand Down
4 changes: 2 additions & 2 deletions seafile-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.13 AS get

RUN apk add --no-cache wget

ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.4
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.5

RUN cd /tmp && \
wget https://download.seadrive.org/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz && \
Expand All @@ -28,7 +28,7 @@ python3-jinja2 \
python3-sqlalchemy \
&& rm -rf /var/lib/apt/lists/*

ENV SEAFILE_VERSION=8.0.4
ENV SEAFILE_VERSION=8.0.5

COPY --from=get /tmp/seafile-server-${SEAFILE_VERSION} /opt/seafile/seafile-server-${SEAFILE_VERSION}
COPY scripts /scripts
Expand Down
2 changes: 1 addition & 1 deletion seahub-media/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.13 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.4
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.5

RUN apk add --no-cache wget

Expand Down
2 changes: 1 addition & 1 deletion seahub/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.13 AS get
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.4
ENV SEAFILE_SERVER=seafile-server SEAFILE_VERSION=8.0.5

RUN apk add --no-cache wget

Expand Down

0 comments on commit 9797239

Please sign in to comment.