2023-02-15 21:45:31 +00:00
|
|
|
version: '3.6'
|
2024-02-25 01:59:59 +00:00
|
|
|
|
2023-02-15 21:45:31 +00:00
|
|
|
services:
|
|
|
|
db:
|
2024-02-25 01:59:59 +00:00
|
|
|
image: mariadb:10.11
|
2023-02-15 21:45:31 +00:00
|
|
|
container_name: seafile-mysql
|
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=db_dev # Requested, set the root's password of MySQL service.
|
|
|
|
- MYSQL_LOG_CONSOLE=true
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
2023-02-25 13:09:52 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/seafile/db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store.
|
2024-02-25 01:59:59 +00:00
|
|
|
#networks:
|
|
|
|
# - proxy
|
|
|
|
|
2023-02-15 21:45:31 +00:00
|
|
|
memcached:
|
2024-02-25 01:59:59 +00:00
|
|
|
image: memcached:1.6.18
|
2023-02-15 21:45:31 +00:00
|
|
|
container_name: seafile-memcached
|
|
|
|
entrypoint: memcached -m 256
|
|
|
|
restart: unless-stopped
|
2024-02-25 01:59:59 +00:00
|
|
|
#networks:
|
|
|
|
# - proxy
|
|
|
|
|
2023-02-15 21:45:31 +00:00
|
|
|
seafile:
|
|
|
|
image: seafileltd/seafile-mc:latest
|
|
|
|
container_name: seafile
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- "7780:80" # HTTP
|
|
|
|
- "7443:443" # HTTPS
|
|
|
|
volumes:
|
2023-02-25 13:09:52 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/seafile/data:/shared # Requested, specifies the path to Seafile data persistent store.
|
2023-02-15 21:45:31 +00:00
|
|
|
environment:
|
|
|
|
- DB_HOST=db
|
|
|
|
- DB_ROOT_PASSWD=db_dev # Requested, the value shuold be root's password of MySQL service.
|
2024-02-25 01:59:59 +00:00
|
|
|
- TIME_ZONE=Europe/Berlin # Optional, default is UTC. Should be uncomment and set to your local time zone.
|
2023-02-15 21:45:31 +00:00
|
|
|
- SEAFILE_ADMIN_EMAIL=john.doe@example.com # Specifies Seafile admin user, default is 'me@example.com'.
|
|
|
|
- SEAFILE_ADMIN_PASSWORD=MySecureLoginPassword # Specifies Seafile admin password, default is 'asecret'.
|
|
|
|
- SEAFILE_SERVER_LETSENCRYPT=false # Whether to use https or not.
|
|
|
|
- SEAFILE_SERVER_HOSTNAME=seafile.example.com # Specifies your host name if https is enabled.
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- memcached
|
2024-02-25 01:59:59 +00:00
|
|
|
#networks:
|
|
|
|
# - proxy
|
|
|
|
#labels:
|
|
|
|
# - traefik.enable=true
|
|
|
|
# - traefik.docker.network=proxy
|
|
|
|
# - traefik.http.routers.seafile.rule=Host(`seafile.example.com`)
|
|
|
|
# - traefik.http.services.seafile.loadbalancer.server.port=80
|
|
|
|
# # Optional part for file upload max sizes
|
|
|
|
# - traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=50000000
|
|
|
|
# - traefik.http.middlewares.limit.buffering.maxResponseBodyBytes=50000000
|
|
|
|
# - traefik.http.middlewares.limit.buffering.memRequestBodyBytes=50000000
|
|
|
|
# - traefik.http.middlewares.limit.buffering.memResponseBodyBytes=50000000
|
|
|
|
# # Optional part for traefik middlewares
|
|
|
|
# - traefik.http.routers.seafile.middlewares=local-ipwhitelist@file,authelia@docker
|
|
|
|
|
|
|
|
#networks:
|
|
|
|
# proxy:
|
|
|
|
# external: true
|