webpack deprecated the public command line option, it now needs a full url

This commit is contained in:
Joe Auman 2022-09-26 09:29:54 -04:00
parent 7b902e3b4c
commit 75843eb088
2 changed files with 4 additions and 3 deletions

View File

@ -3,9 +3,9 @@ services:
apple2js: apple2js:
container_name: "apple2js" container_name: "apple2js"
build: . build: .
restart: always #restart: always
environment: environment:
- HOSTNAME=docker.localdomain - HOSTNAME=http://docker.localdomain:8989
volumes: volumes:
- ./:/home/node/app - ./:/home/node/app
ports: ports:

View File

@ -8,5 +8,6 @@ echo "Building..."
npm install npm install
echo "Starting server..." echo "Starting server..."
npm run start -- --public $HOSTNAME npm run start -- --client-web-socket-url $HOSTNAME
#sleep infinity # uncomment to help debug