项目作者: fjctp

项目描述 :
Docker image for seafile server
高级语言: Shell
项目地址: git://github.com/fjctp/seafile-server.git
创建时间: 2017-02-07T04:56:16Z
项目社区:https://github.com/fjctp/seafile-server

开源协议:GNU General Public License v3.0

下载


Seafile-server

It deploys seafile server with Nginx, and it supports SSL.

Configuration

Environment Variables

Name Usage Default Example
PROTOCOL Protocol wanted http https
DOMAIN Server domain name 0.0.0.0 https://www.seafile.com

Login Information

Default

Email Password
admin@seafile password

**PLEASE CHANGE THE PASSWORD UPON LOGIN**

Want to change it?

Create admin.txt in the shared folder with following information

  1. {
  2. "email": "admin@seafile",
  3. "password": "password"
  4. }

Run as daemon

x86 or x86_64

```docker run -it —rm —name seafile -p 80:80 -p 443:443 -v /mnt/ssl/archive/nas.jsnc.info:/etc/ssl -v /mnt/seafile-db:/var/seafile/shared -e “PROTOCOL=https” -e “DOMAIN=https://nas.jsnc.info“ local/seafile bash
docker run -d —name seafile-server \
-p 80:80 \
-p 443:443 \
-e “PROTOCOL=https”
-e “DOMAIN=https://www.seafile.com
-v :/var/seafile/shared \
-v :/etc/ssl \
fjctp/seafile-server:latest

  1. ## RPi

docker run -d —name seafile-server \
-p 80:80 \
-p 443:443 \
-e “PROTOCOL=https”
-e “DOMAIN=https://www.seafile.com
-v :/var/seafile/shared \
-v :/etc/ssl \
fjctp/seafile-server:raspberrypi3-latest
```

Pre-build image

See https://hub.docker.com/r/fjctp/seafile-server/