Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Docker Swarm, replicas & exposing ports - I get 'port is already allocated' on apply #2

Closed
hashibot opened this issue Jun 13, 2017 · 1 comment
Labels

Comments

@hashibot
Copy link

This issue was originally opened by @tomwilkie as hashicorp/terraform#3526. It was migrated here as part of the provider split. The original body of the issue is below.


* docker_container.frontend.1: Unable to start container: API error (500): Cannot start container 556d141acc87dcc4797c4a84d82cb35b49197db0009d20f2304f64c0b5146305: Bind for 0.0.0.0:80 failed: port is already allocated

I get this error consistently. I have a 3 host swarm cluster, and want to start 3 replicas of the frontend container, one on each host. One always fails to start.

My diagnosis is that, as Terraform is passing the HostConfig on start (and not on create), Swarm is making the placement decision before it knows about the port mapping, and is putting two of my frontends on the same machine.

I guess the fix is to pass HostConfig on create, but the comment in the code (https://github.com/hashicorp/terraform/blob/master/builtin/providers/docker/resource_docker_container_funcs.go#L35) seems to indicate you tried this and it didn't work. I've tried it and it does; perhaps this is an Docker version thing? Either way, would you be open to a PR which send the host config on create and start?

@hashibot hashibot added the bug label Jun 13, 2017
@mavogel
Copy link
Contributor

mavogel commented Sep 25, 2018

As #40 added swarm functionalities it is now possible to start a service with the desired amount of replicas in a pre-configured swarm. The test files provide detailed examples of configurations.

@mavogel mavogel closed this as completed Sep 25, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants