Releases: hashistack4u/swarm-integration
Releases · hashistack4u/swarm-integration
v0.0.1
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