Skip to content

Commit

Permalink
Update to Seafile 9.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
antontkv committed Oct 21, 2023
1 parent f452acc commit 3af5f34
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ COPY container_scripts/backup /usr/sbin
RUN set -eux; \
# Installing Seahub dependencies
pip3 install --no-cache-dir --no-dependencies \
captcha==0.3 \
captcha==0.4 \
django-simple-captcha==0.5.17 \
django-ranged-response==0.2.0 \
pycryptodome==3.14.1 \
Pillow==9.0.1 \
Pillow==9.1.0 \
; \
# Installing Seafdav dependencies
pip3 install --no-cache-dir --no-dependencies \
markupsafe==2.0.1 \
Jinja2~=2.10 \
sqlalchemy==1.4.31
sqlalchemy==1.4.36

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

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 = 9.0.4
SEAFILE_VERSION = 9.0.5

.PHONY: help
help: ## Show help
Expand Down
2 changes: 1 addition & 1 deletion container_scripts/setup_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def do_major_update(current_ver: str, old_ver: str) -> None:
update_7_1__8_0 = os.path.join(SERVER_PATH, "upgrade/upgrade_7.1_8.0.sh")
update_8_0__9_0 = os.path.join(SERVER_PATH, "upgrade/upgrade_8.0_9.0.sh")
update_map = {
("9.0.2", "9.0.3", "9.0.4"): {
("9.0.2", "9.0.3", "9.0.4", "9.0.5"): {
("8.0.2", "8.0.3", "8.0.4", "8.0.5", "8.0.6", "8.0.7", "8.0.8"): (update_8_0__9_0,),
("7.1.3", "7.1.4", "7.1.5"): (update_7_1__8_0, update_8_0__9_0),
},
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:9.0.4
image: ghcr.io/antontkv/seafile:9.0.5
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:9.0.4",
image="ghcr.io/antontkv/seafile:9.0.5",
name="test-seafile",
detach=True,
volumes={"test-seafile": {"bind": "/seafile/data", "mode": "rw"}},
Expand Down

0 comments on commit 3af5f34

Please sign in to comment.