https://github.com/helpermethod/docker-lua
A Docker image for running Lua applications.
https://github.com/helpermethod/docker-lua
alpine-linux docker lua
Last synced: 9 months ago
JSON representation
A Docker image for running Lua applications.
- Host: GitHub
- URL: https://github.com/helpermethod/docker-lua
- Owner: helpermethod
- License: mit
- Created: 2018-08-20T06:38:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-05T21:54:08.000Z (almost 7 years ago)
- Last Synced: 2025-02-05T03:36:39.658Z (10 months ago)
- Topics: alpine-linux, docker, lua
- Language: Dockerfile
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-lua
A Docker image for running [Lua](https://www.lua.org/) applications.
[](https://hub.docker.com/r/helpermethod/docker-lua)
[](https://hub.docker.com/r/helpermethod/docker-lua)
[](https://hub.docker.com/r/helpermethod/docker-lua)
[](https://raw.githubusercontent.com/helpermethod/docker-lua/master/LICENSE)
## Features
* based on [Alpine Linux](https://hub.docker.com/_/alpine)
* runs as non-root user by default
* suitable as a base image
## Usage
## Running a prebuilt image
```sh
# run latest version
$ docker run -it helpermethod/docker-lua sh
# run specific version
$ docker run -it helpermethod/docker-lua:0.4.0 sh
```
## Using docker-lua as a base image
```dockerfile
FROM helpermethod/docker-lua:0.4.0
USER ROOT
WORKDIR /
# add your own instructions here
USER lua
WORKDIR lua
```