Skip to content

Commit

Permalink
minor fixes in README
Browse files Browse the repository at this point in the history
  • Loading branch information
augi committed Apr 15, 2019
1 parent 2f61545 commit 7392bfc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,20 +88,20 @@ dockerCompose {
upAdditionalArgs = ['--no-deps']
downAdditionalArgs = ['--some-switch']
waitForTcpPorts = true // turns off the waiting for exposed TCP ports opening
waitForTcpPorts = true // turns off the waiting for exposed TCP ports opening; default is true
tcpPortsToIgnoreWhenWaiting = [1234] // list of TCP ports what will be ignored when waiting for exposed TCP ports opening; default: empty list
captureContainersOutput = false // if true, prints output of all containers to Gradle output - very useful for debugging; default is false
captureContainersOutputToFile = '/path/to/logFile' // sends output of all containers to a log file
captureContainersOutputToFiles = '/path/to/directory' // sends output of all services to a dedicated log file in the directory specified, e.g. 'web.log' for service named 'log'
composeLogToFile = project.file('build/my-logs.txt') // redirect output of composeUp and composeDown tasks to this file; default is null (ouput is not redirected)
containerLogToDir = project.file('build/logs') // directory where composeLogs task stores output of the containers; default: build/containers-logs
stopContainers = true // doesn't call `docker-compose down` - see below the paragraph about reconnecting
removeContainers = true
stopContainers = true // doesn't call `docker-compose down` if set to false - see below the paragraph about reconnecting; default is true
removeContainers = true // default is true
removeImages = "None" // Other accepted values are: "All" and "Local"
removeVolumes = true
removeOrphans = false // removes containers for services not defined in the Compose file
removeDependents = false // calculates services dependencies of startedServices and removes those as well
removeVolumes = true // default is true
removeOrphans = false // removes containers for services not defined in the Compose file; default is false
removeDependents = false // calculates services dependencies of startedServices and removes those as well; default is false
projectName = 'my-project' // allow to set custom docker-compose project name (defaults to a stable name derived from absolute path of the project), set to null to Docker Compose default (directory name)
executable = '/path/to/docker-compose' // allow to set the path of the docker-compose executable (useful if not present in PATH)
Expand Down

0 comments on commit 7392bfc

Please sign in to comment.