AWS and IPv6 only solution

Are you interested in bypassing the complexities of Network Address Translation (NAT) and deploying containers without the need for IP address translation? The solution lies in acquiring ample public IP addresses, although the high cost of each IPv4 address makes it impractical to assign one to every container. Conversely, IPv6 offers an abundance of addresses,… Continue reading AWS and IPv6 only solution

Docker recreate

Reset all containers and images (DANGER) docker-compose rm –all && docker-compose pull && docker-compose build –no-cache && docker-compose up -d –force-recreate Rebuild the container docker-compose down && docker-compose up -d –build