Closed nixfreak closed 1 month ago
I can't diagnose this issue without full logs from all containers. Seafile-server doesn't start.
Image from stack
Server: seafile-server-1 -
Server: seafile-db-1 -
Not sure why the database doesn't like the password
Server: seafile-memcache-1 - No log line matching the '' filter
Server: seafile-seafile-caddy-1 -
Server: seafile-seahub-media-1 -
Server: seafile-seahub-1 - No log line matching the '' filter
Pasting the full compose file
version: '3.8'
services:
seafile-server:
image: ggogel/seafile-server:11.0.12
volumes:
- seafile-data:/shared
environment:
- DB_HOST=db
- DB_ROOT_PASSWD="TpRkuwR2zAMcskAPm3trnbxTmTDzR7"
- TIME_ZONE=America/Chicago
- HTTPS=true
- SEAFILE_URL=cha0snet.zapto.org # Mandatory on first deployment!
networks:
- seafile-net
depends_on:
db:
condition: service_healthy
healthcheck:
test: ["CMD", "nc", "-z", "localhost", "8082"]
interval: 10s
timeout: 10s
retries: 3
restart: unless-stopped
seahub:
image: ggogel/seahub:11.0.12
volumes:
- seafile-data:/shared
- seahub-avatars:/shared/seafile/seahub-data/avatars
- seahub-custom:/shared/seafile/seahub-data/custom
environment:
- SEAFILE_ADMIN_EMAIL=me@example.com
- SEAFILE_ADMIN_PASSWORD=Pm3trnbxTmTDzR7
- networks:
- seafile-net
depends_on:
db:
condition: service_healthy
seafile-server:
condition: service_healthy
restart: unless-stopped
seahub-media:
image: ggogel/seahub-media:11.0.12
volumes:
- seahub-avatars:/usr/share/caddy/media/avatars
- seahub-custom:/usr/share/caddy/media/custom
networks:
- seafile-net
restart: unless-stopped
db:
image: mariadb:10.11.9
environment:
- MYSQL_ROOT_PASSWORD="TpRkuwR2zAMcskAPm3trnbxTmTDzR7"
- MYSQL_LOG_CONSOLE=true
- MARIADB_AUTO_UPGRADE=true
volumes:
- seafile-mariadb:/var/lib/mysql
networks:
- seafile-net
healthcheck:
test: ["CMD", "healthcheck.sh", "--su-mysql", "--connect", "--innodb_initialized"]
interval: 10s
timeout: 10s
retries: 3
restart: unless-stopped
memcached:
image: memcached:1.6.31
entrypoint: memcached -m 1024
networks:
- seafile-net
restart: unless-stopped
seafile-caddy:
image: ggogel/seafile-caddy:2.8.4
ports:
- "80:80" # Point your reverse proxy to port 80 of this service
networks:
- seafile-net
- default
restart: unless-stopped
networks:
seafile-net:
internal: true
volumes:
seafile-data:
seafile-mariadb:
seahub-avatars:
seahub-custom:
Even tried to replace the password by going into docker , but unable to change it.
First of all there is a syntax error in the provided compose file:
services.seahub.environment.2 must be a string
- networks:
- seafile-net
After removing this syntax error, I can start the stack using the same configuration without any issues.
The logs you provided for seafile-server
are still not the full logs.
I suggest you delete all containers and volumes, and start from scratch.
Do I need to setup any other containers besides this one ?
Using Portainer created a new stack called "seafile" copied the compose file and edited the env variables. Try to start and got error.