Skip to content

Releases: hashistack4u/swarm-integration

v0.0.1

21 Feb 13:32
Compare
Choose a tag to compare

Read only Docker driver which detects connects jobs to existing, running containers.

Example job:

job "nginx-test" {
  group "nginx-group" {
    task "nginx" {
      driver = "docker-readonly"
      config {
        image = "nginx:latest"
      }
    }
  }
}

which can be used with Docker Swarm service created with command:

docker service create --name nginx-test nginx:latest