Skip to content

Commit

Permalink
Merge pull request #54 from docksal/develop
Browse files Browse the repository at this point in the history
Release 1.5.2
  • Loading branch information
lmakarov authored Nov 14, 2019
2 parents c94d4e0 + 71eb3c0 commit e8ac7b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist: xenial
dist: bionic

language: minimal

Expand Down
3 changes: 3 additions & 0 deletions bin/proxyctl
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ cleanup ()
# Remove dangling project containers
log "Removing dangling project: ${project_name}..."
docker ps -qa --filter "label=com.docker.compose.project=${project_name}" | xargs docker rm -f
# Remove project volumes. "docker volume prune" (used below) does not remove the project_root volume.
# See https://github.com/moby/moby/issues/40152
docker volume ls -q --filter "label=com.docker.compose.project=${project_name}" | xargs docker volume rm -f
# Disconnect vhost-proxy from the project network and remove the network.
# See https://github.com/docksal/service-vhost-proxy/issues/6 for more details on why this is necessary.
local network="${project_name}_default"
Expand Down
2 changes: 1 addition & 1 deletion tests/projects/project1/.docksal/docksal.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DOCKSAL_STACK=none

1 change: 0 additions & 1 deletion tests/projects/project2/.docksal/docksal.env
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
DOCKSAL_STACK=none
1 change: 0 additions & 1 deletion tests/projects/project3/.docksal/docksal.env
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
DOCKSAL_STACK=none

0 comments on commit e8ac7b6

Please sign in to comment.