aboutsummaryrefslogtreecommitdiff
path: root/docker/seafile/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/seafile/Dockerfile')
-rw-r--r--docker/seafile/Dockerfile11
1 files changed, 6 insertions, 5 deletions
diff --git a/docker/seafile/Dockerfile b/docker/seafile/Dockerfile
index 7373b47..88dee4f 100644
--- a/docker/seafile/Dockerfile
+++ b/docker/seafile/Dockerfile
@@ -9,7 +9,7 @@ RUN apt-get update && \
tar xf ./seafile.tar.gz && \
mv seafile-server-${VERSION} seafile-server
-FROM debian:buster
+FROM amd64/debian:buster
COPY --from=builder ./seafile-server /srv/webstore/seafile-server
@@ -32,10 +32,11 @@ RUN apt-get update && \
pip install Pillow==4.3.0 && \
pip install moviepy && \
useradd -u 1000 -d /srv/webstore seauser && \
- chown -R seauser:1000 /srv/webstore/ && \
- mkdir -p /usr/lib64/mysql/plugin/ && \
- ln -s /usr/lib/x86_64-linux-gnu/mariadb*/plugin/mysql_clear_password.so /usr/lib64/mysql/plugin/ && \
- ln -s /usr/lib/x86_64-linux-gnu/mariadb*/plugin/dialog.so /usr/lib64/mysql/plugin/
+ chown -R seauser:1000 /srv/webstore/
+
+RUN mkdir -p /usr/local/lib/mariadb/plugin/ && \
+ ln -s /usr/lib/x86_64-linux-gnu/mariadb*/plugin/mysql_clear_password.so /usr/local/lib/mariadb/plugin/ && \
+ ln -s /usr/lib/x86_64-linux-gnu/mariadb*/plugin/dialog.so /usr/local/lib/mariadb/plugin/
WORKDIR /srv/webstore/seafile-server
COPY seadocker /usr/local/bin/seadocker