mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
5987703631
For this to work, the following variables will need to be set at Docker hub: - DOCKER_ORG first part of docker repo name (example: mailu) - DOCKER_UN Docker-hub login username (private) - DOCKER_PW Docker-hub login password (private) Note that also Docker hub autobuilds will have to be disabled.
18 lines
266 B
YAML
18 lines
266 B
YAML
sudo: required
|
|
services: docker
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- docker-ce
|
|
env:
|
|
- VERSION=$TRAVIS_BRANCH
|
|
|
|
script:
|
|
- docker-compose -f tests/build.yml -p Mailu build
|
|
- tests/compose/test-script.sh
|
|
|
|
deploy:
|
|
provider: script
|
|
script: bash tests/deploy.sh
|
|
|