Coder Social home page Coder Social logo

Comments (11)

phlptp avatar phlptp commented on June 21, 2024

It is back up now

from units.

phlptp avatar phlptp commented on June 21, 2024

Are you actually using it?

from units.

lendresen87 avatar lendresen87 commented on June 21, 2024

Thanks! Yeah, but we are looking into a more permanent solution, as the usage got a bit higher than expected.

from units.

phlptp avatar phlptp commented on June 21, 2024

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.

from units.

lendresen87 avatar lendresen87 commented on June 21, 2024

Cool, so in theory, we could set up something in our AWS and use that instead?
We have an app that generates some configuration files that we configure our hardware with. We are doing some readings on pressure and temperature and such, and needed a way to convert to the desired units.
We've been calling your REST API for that, but the number of conversions were higher than expected, so I am a bit worried we are calling your service more than it was built for. We have a meeting today to set up something running on our side, so that should fix it. Ps, great library that you have built :)

from units.

lendresen87 avatar lendresen87 commented on June 21, 2024

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.

#13 0.387 cp: cannot stat '../build/webserver/units_webserver': No such file or directory
#13 ERROR: executor failed running [/bin/sh -c cp ../build/webserver/units_webserver .]: exit code: 1

Do you have any theories to what could be wrong?
Also (can't hurt to ask), do you have an official docker image that is available to the public?

from units.

lendresen87 avatar lendresen87 commented on June 21, 2024

So, I had to change this line in your Docker file order to make it build the image:
RUN cp ../build/webserver/units_webserver . && cp ../units/webserver/*.html . && cp ../units/webserver/*.sh .
to
RUN cp ../build/bin/units_webserver . && cp ../units/webserver/*.html . && cp ../units/webserver/*.sh .

I also updated the version label to 0.5.0.

from units.

phlptp avatar phlptp commented on June 21, 2024

hmm, haven't looked at the dockerhub in a while. Guess it isn't updating anymore, looks like the webhooks changed

Anyway
https://hub.docker.com/repository/docker/phlptp/units/general
is supposed to be where some docker images get generated and are publicly available but looks like it isn't updating. I will see if I can get that working again and update the dockerfile.

from units.

lendresen87 avatar lendresen87 commented on June 21, 2024

Thank you, that would be super :)

from units.

phlptp avatar phlptp commented on June 21, 2024

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

from units.

i-ky avatar i-ky commented on June 21, 2024

regenerate the server if it had stopped

You can use Docker restart policies in combination with health check command (either in Dockerfile or as docker run options).

from units.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.