Skip to content

Commit

Permalink
Documentation of the Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
vicziani committed Sep 10, 2021
1 parent 1edfca2 commit e7c326a
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.docker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# What is LWSAPP?

This is a Spring Boot server application
that serves the web services on http://learnwebservices.com site.

The main purpose of this site to provide a free, public, sample SOAP webservices
for everyone. These webservices are designed to long live, so they can be
used in tutorials, videos, blog posts, Stack Overflow, etc.

# How to use this image?

Starting an instance with the following command:

```shell
docker run -p 8080:8080 --name my-lwsapp vicziani/lwsapp
```

Then check the `http://localhost:8080` address!

# Quick reference

* **Where to find more information:**
https://www.learnwebservices.com/
* **Source code:**
https://github.com/vicziani/learnwebservices-server
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,30 @@ The main purpose of this site to provide a free, public, sample SOAP webservices
for everyone. These webservices are designed to long live, so they can be
used in tutorials, videos, blog posts, Stack Overflow, etc.

## Run with Maven

If you have at least 11 version of JDK installed, clone the
repository, then run the application with
the following command in the root folder of the project.

```shell
mvnw spring-boot:run
```

Then check the `http://localhost:8080` address!

## Run with Docker

If you have Docker installed run the application with the following command.
No source is needed, it will download the latest Docker image from
Docker Hub.

```shell
docker run -p 8080:8080 --name my-lwsapp vicziani/lwsapp
```

Then check the `http://localhost:8080` address!

## About the author

This site was developed by István Viczián, the author of the http://jtechlog.hu blog.
Expand Down

0 comments on commit e7c326a

Please sign in to comment.