What problem will this feature address?
Hi!
The docker swarm init being done in the install.sh by default creates ingress network with 10.0.0.0 superblock.
Which caused routing issue within AWS VPC, which had CIDR overlapping with the swarm ingress network IPAM.
I had to fork the script as workaround as below:
https://gist.github.com/audacioustux/0019db540f4330e9ade825595882abbc#file-dokploy-sh-L130
docker swarm init --advertise-addr $advertise_addr --default-addr-pool 172.20.0.0/16 --default-addr-pool-mask-length 24
Describe the solution you'd like
Somehow let the user of install.sh to add such flags with environment variables, like: DOCKER_SWARM_INIT_ARGS
Describe alternatives you've considered
manual installation... not a nice solution...
Additional context
No response
What problem will this feature address?
Hi!
The
docker swarm initbeing done in the install.sh by default createsingressnetwork with10.0.0.0superblock.Which caused routing issue within AWS VPC, which had CIDR overlapping with the swarm ingress network IPAM.
I had to fork the script as workaround as below:
https://gist.github.com/audacioustux/0019db540f4330e9ade825595882abbc#file-dokploy-sh-L130
Describe the solution you'd like
Somehow let the user of install.sh to add such flags with environment variables, like:
DOCKER_SWARM_INIT_ARGSDescribe alternatives you've considered
manual installation... not a nice solution...
Additional context
No response