Skip to content
Snippets Groups Projects
Commit 759b5f70 authored by Andreas Kluge Svendsrud's avatar Andreas Kluge Svendsrud
Browse files

Update README.md

parent 55862dfd
No related branches found
No related tags found
No related merge requests found
Pipeline #284637 passed
...@@ -31,6 +31,24 @@ mvn clean install ...@@ -31,6 +31,24 @@ mvn clean install
mvn spring-boot:run mvn spring-boot:run
``` ```
## Docker
How to run the application with docker. **NOTE:** You need to have docker pre-installed: [Click here](https://docs.docker.com/get-docker/)
### 1. Build the Docker image
```bash
docker build -t your-image-name .
```
### 2. Verify the image was created
```bash
docker images
```
### 3. Run the Docker container:
```bash
docker run -d --name your-container-name -p 8080:8080 your-image-name
```
## Tests ## Tests
### 1. Run tests ### 1. Run tests
```bash ```bash
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment