https://github.com/tarsislimadev/docker-ruby
To compile projects written in Ruby
https://github.com/tarsislimadev/docker-ruby
docker ruby ruby-on-rails
Last synced: 3 months ago
JSON representation
To compile projects written in Ruby
- Host: GitHub
- URL: https://github.com/tarsislimadev/docker-ruby
- Owner: tarsislimadev
- License: mit
- Created: 2023-03-25T13:28:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T14:42:05.000Z (almost 2 years ago)
- Last Synced: 2025-01-13T09:45:04.091Z (over 1 year ago)
- Topics: docker, ruby, ruby-on-rails
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/tmvdl/ruby
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Ruby
[](https://img.shields.io/github/actions/workflow/status/brtmvdl/docker-ruby/docker-push.yml) [](https://img.shields.io/github/license/brtmvdl/docker-ruby) [](https://img.shields.io/github/stars/brtmvdl/antify?style=social)
Para compilaçao e entrega de projetos escritos em Ruby
Veja mais em [hub.docker.com/r/tmvdl/ruby](https://hub.docker.com/r/tmvdl/ruby)
## Como usar
Instalar o [Docker](https://docs.docker.com/engine/install/).
### Em ambiente de desenvolvimento
Criar um arquivo `docker-compose.yaml` na raiz do projeto com a imagem [tmvdl/ruby](https://hub.docker.com/r/tmvdl/ruby).
```yaml
version: '3'
services:
app:
image: tmvdl/ruby
volumes:
- .:/app
```
Subir o container para a construção do build
```bash
docker-compose up --build
```
### Em ambiente de produção
Executar como container do Docker
```sh
docker run tmvdl/ruby
```
## License
[MIT](./LICENSE)