Peerjs : passage du port 9000 a 8081

This commit is contained in:
Gitouche 2022-02-20 18:15:00 +01:00
parent cb6c86fd81
commit c6a04d4f92
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ peerjs:
stage: test
script:
- cd podman-peerjs
- GARBAYE_PEERJS_ENV_LISTENPORT=19000 ./10_install.sh
- GARBAYE_PEERJS_ENV_LISTENPORT=18081 ./10_install.sh
- ./20_enable.sh
- ./30_start.sh && sleep 10
- ./40_stop.sh

View File

@ -3,6 +3,6 @@
container_name='peerjs-server'
service_name="container-${container_name}.service"
listen_if="${GARBAYE_PEERJS_ENV_LISTENIF:-127.0.0.1}"
listen_port="${GARBAYE_PEERJS_ENV_LISTENPORT:-9000}"
listen_port="${GARBAYE_PEERJS_ENV_LISTENPORT:-8081}"
upstream_images='docker.io/peerjs/peerjs-server'
version='0.6.1'