mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2025-02-23 05:22:16 +00:00
11 lines
157 B
Bash
11 lines
157 B
Bash
#!/bin/bash
|
|
|
|
if [ "$SWARM_DNS" = true ]; then
|
|
/scripts/swarm-dns.sh &
|
|
fi
|
|
|
|
caddy run --config /etc/caddy/Caddyfile --adapter caddyfile &
|
|
|
|
wait -n
|
|
|
|
exit $? |