https://github.com/devopsmakers/openresty-dev
A quickstart for Openresty / Lua local development
https://github.com/devopsmakers/openresty-dev
Last synced: 2 months ago
JSON representation
A quickstart for Openresty / Lua local development
- Host: GitHub
- URL: https://github.com/devopsmakers/openresty-dev
- Owner: devopsmakers
- Created: 2017-01-28T15:33:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-30T15:52:22.000Z (almost 9 years ago)
- Last Synced: 2025-03-01T00:35:55.559Z (10 months ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Openresty-dev
A quickstart Openresty / Lua development docker container.
Get up and running like:
```
git clone git@github.com:devopsmakers/openresty-dev.git
cd openresty-dev
docker build -t openresty-dev .
docker run -p 3000:3000 -v $(pwd)/src:/src openresty-dev
```
You should be able get to localhost:3000 in your browser. All changes to code or
configuration will cause Openresty to reload.
WARNING: Security and performance optimisation have not been considered at all here.
Have fun!!