mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-03 21:43:26 +00:00
9 lines
163 B
Bash
9 lines
163 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -f "$ZULIP_DIR/.initialized" ]; then
|
|
python "$ZULIP_DIR/provision.py"
|
|
touch "$ZULIP_DIR/.initialized"
|
|
fi
|
|
|
|
tail -f /var/log/zulip/*.log
|