From 98539ed273f535bb21ff0ac9397c888d16f899d4 Mon Sep 17 00:00:00 2001 From: Florentijn Cornet Date: Tue, 28 Jun 2022 16:09:12 +0200 Subject: [PATCH] config changes --- .../devcontainer.json | 0 Dockerfile | 3 ++- config.yaml | 15 +++++++++------ 3 files changed, 11 insertions(+), 7 deletions(-) rename .devcontainers.json => .devcontainer/devcontainer.json (100%) diff --git a/.devcontainers.json b/.devcontainer/devcontainer.json similarity index 100% rename from .devcontainers.json rename to .devcontainer/devcontainer.json diff --git a/Dockerfile b/Dockerfile index 8f33087..6449796 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ ARG BUILD_FROM - # =ghcr.io/home-assistant/amd64-base:3.15 FROM $BUILD_FROM ENV LANG C.UTF-8 @@ -20,4 +19,6 @@ RUN cd /app && \ npm install \ npm run build +RUN chmod a+x /app/run.sh + ENTRYPOINT ["/app/run.sh"] diff --git a/config.yaml b/config.yaml index f056c2f..36c5be6 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,5 @@ --- -version: "0.3.3" +version: "0.3.4" slug: ps5_mqtt name: PS5 MQTT description: Control Sony PlayStation 5 devices via MQTT @@ -10,21 +10,24 @@ arch: - aarch64 - amd64 - i386 +startup: application +boot: auto host_network: true +map: + - "share:rw" + - "config:ro" options: + ps5_credentials: mqtt: host: port: user: pass: - ps5_credentials: schema: ps5_credentials: str mqtt: host: str - port: str + port: port user: str pass: str -startup: services -stdin: true -init: false \ No newline at end of file +stdin: true \ No newline at end of file