https://github.com/tarsislimadev/docker-clojure
To compile projects written in Clojure
https://github.com/tarsislimadev/docker-clojure
clojure docker
Last synced: 11 months ago
JSON representation
To compile projects written in Clojure
- Host: GitHub
- URL: https://github.com/tarsislimadev/docker-clojure
- Owner: tarsislimadev
- License: mit
- Created: 2023-03-29T14:37:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-29T14:40:36.000Z (almost 3 years ago)
- Last Synced: 2025-01-13T09:45:05.695Z (about 1 year ago)
- Topics: clojure, docker
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Clojure
[](https://img.shields.io/github/actions/workflow/status/brtmvdl/docker-clojure/docker-push.yml) [](https://img.shields.io/github/license/brtmvdl/docker-clojure) [](https://img.shields.io/github/stars/brtmvdl/antify?style=social)
Para compilaçao e entrega de projetos escritos em clojure
Veja mais em [hub.docker.com/r/tmvdl/clojure](https://hub.docker.com/r/tmvdl/clojure)
## 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/clojure](https://hub.docker.com/r/tmvdl/clojure).
```yaml
version: '3'
services:
app:
image: tmvdl/clojure
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/clojure
```
## License
[MIT](./LICENSE)