Giter VIP home page Giter VIP logo

Comments (7)

dselivanov avatar dselivanov commented on May 18, 2024 1

docker available at https://hub.docker.com/r/dselivanov/restrserve/

from restrserve.

dselivanov avatar dselivanov commented on May 18, 2024 1

@d3an that looks like an ordinal example of RestRserve docker image, but not a RestRserve paired with HAproxy. As for standard RestRserve base docker images I suggest "official" one - https://hub.docker.com/repository/docker/rexyai/restrserve (and corresponding Dockerfile)

from restrserve.

dselivanov avatar dselivanov commented on May 18, 2024 1

To make things simpler

from restrserve.

vikram-rawat avatar vikram-rawat commented on May 18, 2024

Link points to a 404 error page. It doesn't exist i guess

from restrserve.

dselivanov avatar dselivanov commented on May 18, 2024

@vikram-rawat please refer to the readme - https://restrserve.org/#docker as the source of truth.

from restrserve.

d3an avatar d3an commented on May 18, 2024

I got a PoC working with this:

Dockerfile

FROM rocker/r-base:latest

RUN mkdir -p /app
COPY . /app

RUN Rscript /app/install_packages.R

CMD Rscript /app/server.R

app/install_packages.R

install.packages("RestRserve", repos = "https://cloud.r-project.org")
install.packages("readr")

app/server.R

library(RestRserve)

app = Application$new()

app$add_get(
  path = "/health", 
  FUN = function(.req, .res) {
    .res$set_body("OK")
  })

app$add_post(
  path = "/addone", 
  FUN = function(.req, .res) {
    result = list(x = .req$body$x + 1L)
    .res$set_content_type("application/json")
    .res$set_body(result)
  })

backend = BackendRserve$new()
backend$start(app, http_port = 8080)

Build Steps

$ docker pull rocker/r-base
$ docker build -t username/image_name .  # build time took like 10mins tho
$ docker run --rm -it -p 8080:8080 username/image_name

Testing

$ curl http://localhost:8080/health
OK
$ curl -X POST -H "Content-Type: application/json" -d '{"x":4}' http://localhost:8080/addone
{"x":5}

from restrserve.

ncullen93 avatar ncullen93 commented on May 18, 2024

Hi @dselivanov is there a reason you removed HAproxy from the base docker? Is it no longer recommended or was that to just make things simpler?

from restrserve.

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.