Files
kamal/test/integration/docker/vm/boot.sh
Donal McBreen 4e811372f8 Integration test insecure registry
The integrations tests use their own registry so avoid hitting docker
hub rate limits.

This was using a self signed certificate but instead use
`--insecure-registry` to let the docker daemon use HTTP.
2024-07-31 16:54:00 +01:00

10 lines
218 B
Bash
Executable File

#!/bin/bash
while [ ! -f /root/.ssh/authorized_keys ]; do echo "Waiting for ssh keys"; sleep 1; done
service ssh restart
dockerd --max-concurrent-downloads 1 --insecure-registry registry:4443 &
exec sleep infinity