Skip to content

Commit ee5ba75

Browse files
committed
Merge branch 'develop' into fix/add-label-to-network
2 parents 6cac3c1 + 5640030 commit ee5ba75

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ env:
88
- TEST_COMMAND=$(echo $TRAVIS_REPO_SLUG | cut -d/ -f 2) # Get command name to be tested
99

1010
before_script:
11-
- |
11+
- sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
12+
- |
1213
# Remove Xdebug for a huge performance increase:
1314
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then
1415
phpenv config-rm xdebug.ini
@@ -33,3 +34,8 @@ notifications:
3334
email:
3435
on_success: never
3536
on_failure: change
37+
38+
addons:
39+
apt:
40+
packages:
41+
- docker-ce

templates/docker-compose.mustache

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3'
1+
version: '3.5'
22

33
services:
44

@@ -48,6 +48,7 @@ services:
4848
{{#network}}
4949
networks:
5050
site-network:
51+
name: ${VIRTUAL_HOST}
5152
{{#networks_labels}}
5253
labels:
5354
{{#label}}

0 commit comments

Comments
 (0)