mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 09:01:38 +00:00
seafile-caddy: improved lifecycle management
Exits container if caddy service exits.
This commit is contained in:
parent
db00d4c6b4
commit
94d3ed3e9e
|
@ -1,5 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ "$SWARM_DNS" = true ]; then
|
||||
/scripts/swarm-dns.sh &
|
||||
fi
|
||||
|
||||
caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
|
||||
caddy run --config /etc/caddy/Caddyfile --adapter caddyfile &
|
||||
|
||||
wait -n
|
||||
|
||||
exit $?
|
|
@ -1,7 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ "$SWARM_DNS" = true ]; then
|
||||
|
||||
cp /etc/caddy/Caddyfile /etc/caddy/Caddyfile.default
|
||||
|
||||
while true; do
|
||||
|
@ -25,4 +23,3 @@ if [ "$SWARM_DNS" = true ]; then
|
|||
sleep 10
|
||||
|
||||
done
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue