seafile-containerized/ci/ci.sh

20 lines
390 B
Bash
Raw Normal View History

2016-11-25 07:48:46 +00:00
#!/bin/bash
set -e -x
pip install docker-squash
(
cd image
make base squash-base server
)
2016-11-25 08:13:06 +00:00
sudo cp samples/server.conf bootstrap/bootstrap.conf
2016-11-25 07:48:46 +00:00
2016-11-25 08:13:06 +00:00
sudo ./launcher bootstrap
sudo ./launcher start && sleep 10
sudo ./launcher stop --skip-prereqs
sudo ./launcher start --docker-args "--memory 1g" && sleep 10
sudo ./launcher restart
sudo ./launcher rebuild --docker-args "--memory 1g"