Skip to content

Commit

Permalink
major: update default container name (#107)
Browse files Browse the repository at this point in the history
The previous default container name `localstack_main` is not a valid URL, so
we rename the default to `localstack-main`.

See localstack/localstack#9469.
  • Loading branch information
simonrw authored Nov 15, 2023
1 parent 4041216 commit 81d9cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cloud/localstack/docker/Container.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Container {
private static final String ENV_DEBUG_DEFAULT = "1";
public static final String LOCALSTACK_EXTERNAL_HOSTNAME = "HOSTNAME_EXTERNAL";

private static final String DEFAULT_CONTAINER_ID = "localstack_main";
private static final String DEFAULT_CONTAINER_ID = "localstack-main";

private final String containerId;
private final List<PortMapping> ports;
Expand Down

0 comments on commit 81d9cd0

Please sign in to comment.