mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
d8561eb442
Using mysql is much better in general. And now that we're using docker, setting up with mysql is as easy as setting up with sqlite3.
16 lines
316 B
YAML
16 lines
316 B
YAML
sudo: required
|
|
language: python
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
# Must put something here, or travis would ask us for requirments.txt
|
|
- echo "Nothing to install"
|
|
|
|
script:
|
|
- cd image && make base && make && cd ..
|
|
- cp samples/server.conf bootstrap/bootstrap.conf
|
|
- ./launcher bootstrap
|
|
- ./launcher start
|