28 lines
616 B
YAML
Executable File
28 lines
616 B
YAML
Executable File
services:
|
|
seafile:
|
|
image: seafileltd/seafile-mc:latest
|
|
container_name: seafile
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1G
|
|
ports:
|
|
- 9890:80
|
|
- 9993:443
|
|
environment:
|
|
DB_HOST: 192.168.178.170
|
|
DB_PORT: 3306
|
|
DB_NAME: seafile
|
|
DB_USERNAME: seafile
|
|
DB_PASSWORD: dbpass
|
|
# DB_ROOT_PASSWD: ImTP4mLg
|
|
SEAFILE_ADMIN_EMAIL: svenhanold@me.com
|
|
SEAFILE_ADMIN_PASSWORD: unGEA%hX18o7bV
|
|
SEAFILE_SERVER_LETSENCRYPT: "false"
|
|
TIME_ZONE: Europe/Berlin
|
|
volumes:
|
|
- ./data:/shared
|
|
restart: unless-stopped
|
|
networks: {}
|
|
|