guide-getting-started
guide-getting-started copied to clipboard
An introductory guide to writing and deploying applications on Open Liberty using Maven and Docker: https://openliberty.io/guides/getting-started.html
I find that with Liberty, most difficult part is the starting point. By that, I mean, setting up the project, liberty, confirming it is set up properly etc. But I...
Doing the lab [Getting started with open liberty](https://openliberty.io/guides/getting-started.html) Running locally on a Windows 10 machine Section [Developing the application in a docker container](https://openliberty.io/guides/getting-started.html#developing-the-application-in-a-docker-container) When I run `mvn liberty:devc ` I...
For the issue #281, the cloud-hosted guide applied a workaround at PR #284. When the [devc mode issue](https://github.com/OpenLiberty/ci.maven/issues/1596) is addressed, the guide may need to restore the workaround.
I clicked the green button at the end to indicate I was happy with the guide, but there was no room for comment, so I figured I'd leave one here....
- Review what is covered in the GS guide and ensure that it reflects the latest - Review terminology used for accuracy Cc @gkwan-ibm
Add pointers to Open Liberty Tools for the different editors/IDEs supported by Open Liberty to enable developers to find and try what is available to them in the editor or...
Consider to add a new section before “Checking the Open Liberty server logs” to talk about new OL console format: `dev`, `simple`, and `json` dev mode (default) uses `dev` format....
The current Dockerfile just copies server.xml but ignores server.env and bootstrap.properties. As a consequence, the variables used in server.xml are not replaced or normalised. It is much better to copy...
Liberty now supports `.tar.gz` server package format. This means in the Dockerfile, we can simply do something like ``` FROM open-liberty:kernel-java8-ibm ADD /target/.tar.gz /liberty EXPOSE 9080 9443 ``` Note, the...