https://github.com/makevoid/docker-roda
Sample docker-enabled ruby (Roda) app as base for a JSON API.
https://github.com/makevoid/docker-roda
Last synced: 6 months ago
JSON representation
Sample docker-enabled ruby (Roda) app as base for a JSON API.
- Host: GitHub
- URL: https://github.com/makevoid/docker-roda
- Owner: makevoid
- Created: 2017-07-28T13:46:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-28T13:46:18.000Z (over 8 years ago)
- Last Synced: 2025-05-14T01:59:05.786Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 1000 Bytes
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Docker-roda
Sample docker-enabled ruby (Roda) app as base for a JSON API.
Sample commands:
Build:
docker build -t droda .
Run:
docker run droda -p 3000:3000
Rebuild and run:
docker build -t droda . && docker run -p 3000:3000 droda
Bash:
docker run -ti droda bash