CATAPULT
CATAPULT copied to clipboard
Docker container issues
Hi, when i run the docker-compose in the CTS i noticed that the docker_nginx is always in RESTARTING status and the docker_certbot in the EXITED status. Is this expected?
This is the modifications I did after cloning the repo.
cts/.env
cts/docker-compose
I can still view the CATAPULT CTS client http://127.0.0.1:3399/client/#/ though and can upload a course (though i couldn't launch it see https://github.com/adlnet/CATAPULT/issues/40).
I ran into this as well.
I was able to get SSL working by generating the certificate on the host:
./init-ssl.sh localhost
However, you'll likely run into this issue (https://github.com/adlnet/CATAPULT/issues/39) next, after you add an LRS (https://github.com/adlnet/CATAPULT/issues/40).
I'm running into the same issue and had to run the
./init-ssl.sh localhost
and then had to change the routing in the default.conf:
ssl_certificate /usr/share/keys/live/localhost/fullchain.pem;
ssl_certificate_key /usr/share/keys/live/localhost/privkey.pem;
There is still one container not running
and now i'm getting the (#40) as mentioned by @catmeme