Code Monkey home page Code Monkey logo

docker-lune-egg's Introduction

Docker Lune

Docker files for Lune.

Available images:

  • Debian: nicell/lune:debian
    • Default. Uses the debian:stable-slim base image.
  • Distroless: nicell/lune:distroless
    • Barebones image. Uses the gcr.io/distroless/cc base image. No shell, package manager, or other tools are included.
  • Binary only: nicell/lune:bin
    • Contains only the Lune binary. Used for adding Lune to other images.

Run Lune

Enter the Lune REPL:

docker run -it nicell/lune repl

Enter the container shell:

docker run -it nicell/lune sh

Run a server.luau file:

docker run --init -it -p 3000:3000 -v $PWD:/app nicell/lune run app/server

The --init flag is required to properly handle signals such as SIGINT from CTRL+C. -p 3000:3000 maps the container port 3000 to the host port 3000. -v $PWD:/app mounts the current directory to the /app directory in the container.

Dockerfile Usage

FROM nicell/lune

# Port your app listens on
EXPOSE 3000

WORKDIR /app

COPY . .

# Run server.luau
CMD ["run", "server"]

Custom Base Image

You can use the nicell/lune:bin image to add Lune to any base image.

FROM ubuntu
COPY --from=nicell/lune:bin /lune /usr/local/bin/

docker-lune-egg's People

Contributors

nicell avatar lawmixer avatar

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.