-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Your units conversion service seems to be down... #205
Comments
It is back up now |
Are you actually using it? |
Thanks! Yeah, but we are looking into a more permanent solution, as the usage got a bit higher than expected. |
The webserver is pretty easy to run locally. Right now it is just running a docker image from docker hub on an AWS instance. You can run that docker locally or just compile the webserver and run that on whatever you like. Curious what you are doing with it. And it looked like the docker server just stopped for some unknown reason, so I just restarted it. |
Cool, so in theory, we could set up something in our AWS and use that instead? |
So I am currently trying to build a docker image using your Docker file in the webserver folder, but it seems to be failing to find the units_webserver in the build folder.
Do you have any theories to what could be wrong? |
So, I had to change this line in your Docker file order to make it build the image: I also updated the version label to 0.5.0. |
hmm, haven't looked at the dockerhub in a while. Guess it isn't updating anymore, looks like the webhooks changed Anyway |
Thank you, that would be super :) |
The docker hub images are updated and working again Here is a script I run on my EC2 instance #!/usr/bin/bash
docker logs units_webserver &> /home/ec2-user/weblog/weblog$(date "+%s").log
docker stop units_webserver
docker container rm units_webserver
docker pull phlptp/units:webserver
docker run --name units_webserver -p80:80 -d phlptp/units:webserver
I think I run this once a day to automatically get the latest images and regenerate the server if it had stopped |
You can use Docker restart policies in combination with health check command (either in Dockerfile or as |
Hi, your units conversion service mentioned in the docs seems to be down:
https://units.readthedocs.io/en/latest/_static/convert.html
Do you know when the service will be up again?
The text was updated successfully, but these errors were encountered: