Skip to content

Commit

Permalink
Update to Seafile 9.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
antontkv committed Oct 20, 2023
1 parent 31ac728 commit c562d20
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,20 @@ RUN set -eux; \
captcha==0.3 \
django-simple-captcha==0.5.17 \
django-ranged-response==0.2.0 \
pycryptodome==3.10.4 \
pycryptodome==3.12.0 \
Pillow==8.4.0 \
; \
# Installing Seafdav dependencies
pip3 install --no-cache-dir --no-dependencies \
markupsafe==2.0.1 \
Jinja2~=2.10 \
sqlalchemy==1.4.27
sqlalchemy==1.4.28

COPY container_scripts/setup_script.py /seafile
COPY container_scripts/docker_entrypoint.sh /seafile
COPY container_scripts/backup /usr/sbin

ENV PYTHONPATH=/seafile/server/seafile-server/seahub/thirdpart:/seafile/server/seafile-server/seafile/lib64/python3.6/site-packages
ENV PYTHONPATH=/seafile/server/seafile-server/seahub/thirdpart:/seafile/server/seafile-server/seafile/lib/python3/site-packages

ARG SEAFILE_VERSION
ENV SEAFILE_VERSION=${SEAFILE_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SEAFILE_VERSION = 8.0.8
SEAFILE_VERSION = 9.0.2

.PHONY: help
help: ## Show help
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ volumes:

services:
seafile:
image: ghcr.io/antontkv/seafile:8.0.8
image: ghcr.io/antontkv/seafile:9.0.2
container_name: seafile
environment:
TZ:
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SeafileContainerSetup:
def __init__(self) -> None:
self._docker_client = docker.from_env()
self._container_args = dict(
image="ghcr.io/antontkv/seafile:8.0.8",
image="ghcr.io/antontkv/seafile:9.0.2",
name="test-seafile",
detach=True,
volumes={"test-seafile": {"bind": "/seafile/data", "mode": "rw"}},
Expand Down

0 comments on commit c562d20

Please sign in to comment.