Skip to content

Commit

Permalink
Merge pull request #673 from felddy/release/10.291.1
Browse files Browse the repository at this point in the history
Bump revision to 10.291.1
  • Loading branch information
felddy authored Apr 29, 2023
2 parents da985df + b2611a1 commit 9827156
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ body:
org.opencontainers.image.title = "foundryvtt-docker"
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.vendor = "Geekpad"
org.opencontainers.image.version = "10.291.0"
org.opencontainers.image.version = "10.291.1"
validations:
required: true
- type: textarea
Expand All @@ -78,7 +78,7 @@ body:
render: console
placeholder: |
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v10.291.0
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v10.291.1
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ body:
org.opencontainers.image.title = "foundryvtt-docker"
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.vendor = "Geekpad"
org.opencontainers.image.version = "10.291.0"
org.opencontainers.image.version = "10.291.1"
validations:
required: true
- type: textarea
Expand All @@ -93,7 +93,7 @@ body:
render: console
placeholder: |
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v10.291.0
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v10.291.1
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ It is recommended that most users use the `:release` tag.
| Image:tag | Description |
|-----------|-------------|
|`felddy/foundryvtt:release` | The most recent image from the `stable` channel. These images are **considered stable**, and well-tested. Most users will use this tag. The `latest` tag always points to the same version as `release`.|
|`felddy/foundryvtt:10.291.0`| An exact image version. |
|`felddy/foundryvtt:10.291.1`| An exact image version. |
|`felddy/foundryvtt:10.291`| The most recent image matching the major and minor version numbers. |
|`felddy/foundryvtt:10`| The most recent image matching the major version number. |
|`felddy/foundryvtt:latest`| See the `release` tag. [Why does `latest` == `release`?](https://vsupalov.com/docker-latest-tag/) |
Expand Down Expand Up @@ -327,8 +327,8 @@ Build the image locally using this git repository as the [build context](https:/

```console
docker build \
--build-arg VERSION=10.291.0 \
--tag felddy/foundryvtt:10.291.0 \
--build-arg VERSION=10.291.1 \
--tag felddy/foundryvtt:10.291.1 \
https://github.com/felddy/foundryvtt-docker.git#develop
```

Expand All @@ -351,9 +351,9 @@ Docker:
```console
docker buildx build \
--platform linux/amd64 \
--build-arg VERSION=10.291.0 \
--build-arg VERSION=10.291.1 \
--output type=docker \
--tag felddy/foundryvtt:10.291.0 .
--tag felddy/foundryvtt:10.291.1 .
```

## Pre-installed distribution builds ##
Expand All @@ -371,8 +371,8 @@ Build the image with credentials:
docker build \
--build-arg FOUNDRY_USERNAME='<your_username>' \
--build-arg FOUNDRY_PASSWORD='<your_password>' \
--build-arg VERSION=10.291.0 \
--tag felddy/foundryvtt:10.291.0 \
--build-arg VERSION=10.291.1 \
--tag felddy/foundryvtt:10.291.1 \
https://github.com/felddy/foundryvtt-docker.git#develop
```

Expand All @@ -381,8 +381,8 @@ Or build the image using a temporary URL:
```console
docker build \
--build-arg FOUNDRY_RELEASE_URL='<temporary_url>' \
--build-arg VERSION=10.291.0 \
--tag felddy/foundryvtt:10.291.0 \
--build-arg VERSION=10.291.1 \
--tag felddy/foundryvtt:10.291.1 \
https://github.com/felddy/foundryvtt-docker.git#develop
```

Expand Down
2 changes: 1 addition & 1 deletion src/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""This file defines the version of this module."""

__version__ = "10.291.0"
__version__ = "10.291.1"

0 comments on commit 9827156

Please sign in to comment.