Skip to content

Commit

Permalink
Use yaml instead of yml
Browse files Browse the repository at this point in the history
  • Loading branch information
slominskir committed May 16, 2024
1 parent ba89e39 commit 43036e7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/dd.yml → .github/workflows/dd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main
paths:
- README.md
- .github/workflows/dd.yml
- .github/workflows/dd.yaml
jobs:
description:
uses: jeffersonlab/container-workflows/.github/workflows/docker-description.yaml@v2
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# wildfly [![CI](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yml/badge.svg)](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yml) [![Docker (demo)](https://img.shields.io/docker/v/jeffersonlab/wildfly?sort=semver&label=DockerHub)](https://hub.docker.com/r/jeffersonlab/wildfly)
# wildfly [![CI](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yaml/badge.svg)](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yaml) [![Docker (demo)](https://img.shields.io/docker/v/jeffersonlab/wildfly?sort=semver&label=DockerHub)](https://hub.docker.com/r/jeffersonlab/wildfly)
Configurable [Wildfly](https://www.wildfly.org/) base Docker image and bash setup scripts.

---
Expand Down Expand Up @@ -70,7 +70,7 @@ Must be executed once per app installed in Wildfly.

**Note**: Runtime Overridable parameters only make sense for Wildfly instances used for a single app (such as in a Container). Providing runtime overrides to a multi-app configuration would overwrite all app configs of the same name. See https://github.com/JeffersonLab/wildfly/blob/86df35a1357b5ad863ecc53be94676bf96ef8489/scripts/app-setup.sh#L69

**Note**: As an alternative to the bash scripts The docker image configures Wildfly for use in the compose environment and that's a good starting point to copy from. Outside a compose environment you may need to tweak the standalone.xml configuration to use different host names and ports (For example Oracle and Keycloak host names would need to be updated to localhost:1521 and localhost:8081 respectively when using the deps.yml and running Wildfly outside the compose network):
**Note**: As an alternative to the bash scripts The docker image configures Wildfly for use in the compose environment and that's a good starting point to copy from. Outside a compose environment you may need to tweak the standalone.xml configuration to use different host names and ports (For example Oracle and Keycloak host names would need to be updated to localhost:1521 and localhost:8081 respectively when using the deps.yaml and running Wildfly outside the compose network):

```
docker compose up
Expand Down Expand Up @@ -99,6 +99,6 @@ These environment variables are Docker specific and are used by the [docker-entr

## Release
1. Bump the version number in the VERSION file and commit and push to GitHub (using [Semantic Versioning](https://semver.org/)).
2. The [CD](https://github.com/JeffersonLab/wildfly/blob/main/.github/workflows/cd.yml) GitHub Action should run automatically invoking:
2. The [CD](https://github.com/JeffersonLab/wildfly/blob/main/.github/workflows/cd.yaml) GitHub Action should run automatically invoking:
- The [Create release](https://github.com/JeffersonLab/container-workflows/blob/main/.github/workflows/gh-release.yaml) GitHub Action to tag the source and create release notes summarizing any pull requests. Edit the release notes to add any missing details.
- The [Publish docker image](https://github.com/JeffersonLab/container-workflows/blob/main/.github/workflows/docker-publish.yaml) GitHub Action to create a new demo Docker image.

0 comments on commit 43036e7

Please sign in to comment.