From 8f190c489b079f1495fc3acb2ff7b8d3b364b507 Mon Sep 17 00:00:00 2001 From: Chewing_Bever Date: Sat, 12 Aug 2023 13:58:13 +0200 Subject: [PATCH] chore: update changelog --- CHANGELOG.md | 2 ++ Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2e02ad..652c541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Export command no longer reads backups that do not contribute to the final state * Running backups no longer block stdin input or shutdown +* Env vars `ALEX_CONFIG_DIR`, `ALEX_WORLD_DIR` and `ALEX_BACKUP_DIR` renamed to + `ALEX_CONFIG`, `ALEX_WORLD` and `ALEX_BACKUP` respectively ## [0.3.1](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.3.1) diff --git a/Dockerfile b/Dockerfile index 7c63117..819cbf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,9 +47,9 @@ COPY --from=builder /app/target/debug/alex /bin/alex RUN chmod +x /bin/alex # Default value to keep users from eating up all ram accidentally -ENV ALEX_CONFIG_DIR=/app/config \ - ALEX_WORLD_DIR=/app/worlds \ - ALEX_BACKUP_DIR=/app/backups \ +ENV ALEX_CONFIG=/app/config \ + ALEX_WORLD=/app/worlds \ + ALEX_BACKUP=/app/backups \ ALEX_SERVER=paper \ ALEX_XMS=1024 \ ALEX_XMX=2048 \