Change internal nginx port to 8081 to avoid conflict with base image
Some checks failed
External Trigger Scheduler / external-trigger-scheduler (push) Has been cancelled

This commit is contained in:
Joakim Svensson
2026-01-06 19:57:16 +00:00
parent 72673f1b17
commit f72580e7eb
5 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ LABEL maintainer="thelamer"
# title # title
ENV TITLE=QMX-Fusion ENV TITLE=QMX-Fusion
ENV CHROME_CLI="--kiosk http://localhost" ENV CHROME_CLI="--kiosk http://localhost:8081"
RUN \ RUN \
echo "**** add icon ****" && \ echo "**** add icon ****" && \

View File

@@ -10,7 +10,7 @@ LABEL maintainer="thelamer"
# title # title
ENV TITLE=QMX-Fusion ENV TITLE=QMX-Fusion
ENV CHROME_CLI="--kiosk http://localhost" ENV CHROME_CLI="--kiosk http://localhost:8081"
RUN \ RUN \
echo "**** add icon ****" && \ echo "**** add icon ****" && \

View File

@@ -8,7 +8,7 @@ services:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=Etc/UTC - TZ=Etc/UTC
- CHROME_CLI=--kiosk http://localhost # Uppdatera om du vill ändra startinställningar - CHROME_CLI=--kiosk http://localhost:8081 # Uppdatera om du vill ändra startinställningar
volumes: volumes:
- ./config:/config - ./config:/config
ports: ports:

View File

@@ -32,7 +32,7 @@ custom_params:
# optional variables # optional variables
opt_param_usage_include_env: true opt_param_usage_include_env: true
opt_param_env_vars: opt_param_env_vars:
- {env_var: "CHROME_CLI", env_value: "--kiosk http://localhost", desc: "Specify one or multiple Chromium CLI flags, this string will be passed to the application in full."} - {env_var: "CHROME_CLI", env_value: "--kiosk http://localhost:8081", desc: "Specify one or multiple Chromium CLI flags, this string will be passed to the application in full."}
# Selkies blurb settings # Selkies blurb settings
selkies_blurb: true selkies_blurb: true
show_nvidia: true show_nvidia: true

View File

@@ -1,5 +1,5 @@
server { server {
listen 80 default_server; listen 8081 default_server;
root /var/www/fusion-v1; root /var/www/fusion-v1;
index index.html; index index.html;
location / { location / {