https://github.com/hackemateninja/dockerize-clojure-demo
simple demo to run clojure ring api with multi stage docker
https://github.com/hackemateninja/dockerize-clojure-demo
clojure docker java leiningen
Last synced: 5 months ago
JSON representation
simple demo to run clojure ring api with multi stage docker
- Host: GitHub
- URL: https://github.com/hackemateninja/dockerize-clojure-demo
- Owner: hackemateninja
- License: other
- Created: 2024-06-14T17:55:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-14T18:01:11.000Z (about 2 years ago)
- Last Synced: 2025-06-13T13:53:58.895Z (about 1 year ago)
- Topics: clojure, docker, java, leiningen
- Language: Clojure
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# dockerize
A Clojure library designed to ... well, that part is up to you.
## Usage
FIXME
## License
Copyright © 2024 FIXME
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the Eclipse
Public License, v. 2.0 are satisfied: GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or (at your
option) any later version, with the GNU Classpath Exception which is available
at .
# dockerize-clojure-demo
to run the app only make
````
docker build -t dockerize-app .
````
and then
```
docker run -p 3000:3000 dockerize-app
````