hellomicronaut/README.md

23 lines
296 B
Markdown
Raw Normal View History

2023-03-01 11:12:12 +00:00
# Hello Micronaut
2023-03-01 10:56:36 +00:00
2023-03-01 11:12:12 +00:00
Test micronaut web application.
2023-03-01 10:56:36 +00:00
2023-03-01 11:12:12 +00:00
## Usage
2023-03-01 10:56:36 +00:00
2023-03-01 11:12:12 +00:00
### Build application container
```shell
docker build -t hellomicronaut .
docker run --name hello1 -p 8080:8080 hellomicronaut
```
### Test with browser
Connect to the container on the specified port:
<http://localhost:8080/>
2023-03-01 10:56:36 +00:00