https://github.com/fjctp/seafile-server
Docker image for seafile server
https://github.com/fjctp/seafile-server
docker raspberry-pi seafile ssl
Last synced: 7 months ago
JSON representation
Docker image for seafile server
- Host: GitHub
- URL: https://github.com/fjctp/seafile-server
- Owner: fjctp
- License: gpl-3.0
- Created: 2017-02-07T04:56:16.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T19:03:53.000Z (over 8 years ago)
- Last Synced: 2025-04-09T03:41:34.630Z (10 months ago)
- Topics: docker, raspberry-pi, seafile, ssl
- Language: Shell
- Homepage:
- Size: 51.8 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
``` json
{
"email": "admin@seafile",
"password": "password"
}
```
# 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
```
## 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/