Skip to content

Commit

Permalink
Merge pull request #871 from felddy/release/11.315.1
Browse files Browse the repository at this point in the history
Update image version to 11.315.1
  • Loading branch information
felddy authored Jan 5, 2024
2 parents 4a622f1 + baed15e commit 1898162
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 = "11.315.0"
org.opencontainers.image.version = "11.315.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 v11.315.0
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.315.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 = "11.315.0"
org.opencontainers.image.version = "11.315.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 v11.315.0
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.315.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 @@ -212,7 +212,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:11.315.0`| An exact image version. |
|`felddy/foundryvtt:11.315.1`| An exact image version. |
|`felddy/foundryvtt:11.315`| The most recent image matching the major and minor version numbers. |
|`felddy/foundryvtt:11`| 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 @@ -334,8 +334,8 @@ Build the image locally using this git repository as the [build context](https:/

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

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

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

Expand All @@ -388,8 +388,8 @@ Or build the image using a temporary URL:
```console
docker build \
--build-arg FOUNDRY_RELEASE_URL='<temporary_url>' \
--build-arg VERSION=11.315.0 \
--tag felddy/foundryvtt:11.315.0 \
--build-arg VERSION=11.315.1 \
--tag felddy/foundryvtt:11.315.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__ = "11.315.0"
__version__ = "11.315.1"

0 comments on commit 1898162

Please sign in to comment.