17 lines
447 B
YAML
17 lines
447 B
YAML
version: '3'
|
|
services:
|
|
seafile-client:
|
|
restart: always
|
|
image: snegov/seafile-client
|
|
container_name: seafile-client
|
|
environment:
|
|
- LIBRARY_ID=<your-library-id-here>
|
|
- SERVER_HOST=<server-host>
|
|
- USERNAME=<username>
|
|
- PASSWORD=<password>
|
|
- DATA_DIR=<directory-path-to-sync>
|
|
- SEAFILE_UID=<your_uid>
|
|
- SEAFILE_GID=<your_gid>
|
|
volumes:
|
|
- <host-volume-path>:<directory-path-to-sync>
|