Skip to content

Commit 6f2b001

Browse files
authored
Merge pull request #1213 from felddy/fix/issue-1212
Fix Config directory name and bump container version to 13.342.1
2 parents 32db205 + a83ea99 commit 6f2b001

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ body:
6767
org.opencontainers.image.title = "foundryvtt-docker"
6868
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
6969
org.opencontainers.image.vendor = "Geekpad"
70-
org.opencontainers.image.version = "13.342.0"
70+
org.opencontainers.image.version = "13.342.1"
7171
validations:
7272
required: true
7373
- type: textarea
@@ -78,7 +78,7 @@ body:
7878
render: console
7979
placeholder: |
8080
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
81-
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v13.342.0
81+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v13.342.1
8282
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
8383
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
8484
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.

.github/ISSUE_TEMPLATE/regression.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ body:
8282
org.opencontainers.image.title = "foundryvtt-docker"
8383
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
8484
org.opencontainers.image.vendor = "Geekpad"
85-
org.opencontainers.image.version = "13.342.0"
85+
org.opencontainers.image.version = "13.342.1"
8686
validations:
8787
required: true
8888
- type: textarea
@@ -93,7 +93,7 @@ body:
9393
render: console
9494
placeholder: |
9595
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
96-
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v13.342.0
96+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v13.342.1
9797
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
9898
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
9999
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG CONTAINER_VERSION=13.342.0
1+
ARG CONTAINER_VERSION=13.342.1
22
ARG FOUNDRY_RELEASE_URL
33
ARG FOUNDRY_VERSION=13.342
44
ARG NODE_IMAGE_VERSION=22-bookworm-slim

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Virtual Tabletop](https://foundryvtt.com/article/versioning/) that they support.
217217
|-----------|-------------|
218218
|`felddy/foundryvtt:13`| The most recent image matching the major version number. Most users will use this tag. |
219219
|`felddy/foundryvtt:13.342`| The most recent image matching the major and minor version numbers. |
220-
|`felddy/foundryvtt:13.342.0`| An exact image version. |
220+
|`felddy/foundryvtt:13.342.1`| An exact image version. |
221221
|`felddy/foundryvtt:release` | The most recent image from the `stable` channel. These images are **considered stable**, and well-tested. The `latest` tag always points to the same version as `release`.|
222222
|`felddy/foundryvtt:latest`| Same as the `release` tag. [Why does `latest` == `release`?](https://vsupalov.com/docker-latest-tag/) |
223223

@@ -335,7 +335,7 @@ Build the image locally using this git repository as the [build context](https:/
335335

336336
```console
337337
docker build \
338-
--tag felddy/foundryvtt:13.342.0 \
338+
--tag felddy/foundryvtt:13.342.1 \
339339
https://github.com/felddy/foundryvtt-docker.git#develop
340340
```
341341

@@ -359,7 +359,7 @@ Docker:
359359
docker buildx build \
360360
--platform linux/amd64 \
361361
--output type=docker \
362-
--tag felddy/foundryvtt:13.342.0 .
362+
--tag felddy/foundryvtt:13.342.1 .
363363
```
364364

365365
## Pre-installed distribution builds ##
@@ -380,7 +380,7 @@ build-time instead of start-time.
380380
docker build \
381381
--secret id=foundry_username,src=<(echo "<your_username>") \
382382
--secret id=foundry_password,src=<(echo "<your_password>") \
383-
--tag felddy/foundryvtt:13.342.0 \
383+
--tag felddy/foundryvtt:13.342.1 \
384384
https://github.com/felddy/foundryvtt-docker.git#develop
385385
```
386386

@@ -393,7 +393,7 @@ docker build \
393393
> docker build \
394394
> --secret id=foundry_username,src=<(jq -r '.foundry_username' path/to/credentials.json) \
395395
> --secret id=foundry_password,src=<(jq -r '.foundry_password' path/to/credentials.json) \
396-
> --tag felddy/foundryvtt:13.342.0 \
396+
> --tag felddy/foundryvtt:13.342.1 \
397397
> https://github.com/felddy/foundryvtt-docker.git#develop
398398
> ```
399399

@@ -405,7 +405,7 @@ documentation](https://docs.docker.com/build/building/secrets/).
405405
```console
406406
docker build \
407407
--build-arg FOUNDRY_RELEASE_URL='<temporary_url>' \
408-
--tag felddy/foundryvtt:13.342.0 \
408+
--tag felddy/foundryvtt:13.342.1 \
409409
https://github.com/felddy/foundryvtt-docker.git#develop
410410
```
411411

src/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -o errexit
55
set -o pipefail
66

77
DATA_DIR="/data"
8-
CONFIG_DIR="${DATA_DIR}/config"
8+
CONFIG_DIR="${DATA_DIR}/Config"
99
DEPRECATED_ENVS="CONTAINER_PRESERVE_OWNER FOUNDRY_UID FOUNDRY_GID TIMEZONE"
1010
LICENSE_FILE="${CONFIG_DIR}/license.json"
1111
# setup logging

src/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
13.342.0
1+
13.342.1

0 commit comments

Comments
 (0)