sync content with seafile
This commit is contained in:
parent
678a4a9570
commit
8796530ba5
2 changed files with 19 additions and 1 deletions
|
@ -34,3 +34,4 @@ SEAFILE_ADMIN_PASSWORD=abc123456
|
||||||
SEAFILE_REGULAR_USER=johndoe
|
SEAFILE_REGULAR_USER=johndoe
|
||||||
SEAFILE_REGULAR_PASSWORD=johnpassword
|
SEAFILE_REGULAR_PASSWORD=johnpassword
|
||||||
SEAFILE_PHOTO_LIBRARY=12345678
|
SEAFILE_PHOTO_LIBRARY=12345678
|
||||||
|
SEAFILE_NOTES_LIBRARY=12345678
|
|
@ -1,6 +1,23 @@
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
|
seafcli-notes:
|
||||||
|
image: snegov/seafile-client
|
||||||
|
container_name: seafcli-notes
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- LIBRARY_ID=${SEAFILE_NOTES_LIBRARY}
|
||||||
|
- SERVER_HOST=${HOST_SEAFILE}.${DOMAIN}
|
||||||
|
- SERVER_PORT=443
|
||||||
|
- USERNAME=${SEAFILE_REGULAR_USER}
|
||||||
|
- PASSWORD=${SEAFILE_REGULAR_PASSWORD}
|
||||||
|
- DATA_DIR=/library
|
||||||
|
networks:
|
||||||
|
- srv
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_INSTALL}/data/raneto/content:/library
|
||||||
|
|
||||||
raneto:
|
raneto:
|
||||||
image: linuxserver/raneto
|
image: linuxserver/raneto
|
||||||
container_name: raneto
|
container_name: raneto
|
||||||
|
|
Loading…
Add table
Reference in a new issue