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
Some checks failed
External Trigger Scheduler / external-trigger-scheduler (push) Has been cancelled
This commit is contained in:
@@ -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 ****" && \
|
||||||
|
|||||||
@@ -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 ****" && \
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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 / {
|
||||||
|
|||||||
Reference in New Issue
Block a user