update docker-compose

This commit is contained in:
Thomas Egger 2023-05-28 12:56:47 +02:00
parent 53220dcbf8
commit c022a17429
2 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,12 @@ services:
- ./:/home/node/app
command: ash -c "npm i && npm run start:prod"
restart: unless-stopped
environment:
- PUID=1000 # UID to run the application as
- PGID=1000 # GID to run the application as
- WS_FALLBACK=false # Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client.
- RATE_LIMIT=false # Set to true to limit clients to 1000 requests per 5 min.
- TZ=Etc/UTC # Time Zone
ports:
- "3000:3000"
coturn_server:

View File

@ -7,5 +7,11 @@ services:
- ./:/home/node/app
command: ash -c "npm i && npm run start:prod"
restart: unless-stopped
environment:
- PUID=1000 # UID to run the application as
- PGID=1000 # GID to run the application as
- WS_FALLBACK=false # Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client.
- RATE_LIMIT=false # Set to true to limit clients to 1000 requests per 5 min.
- TZ=Etc/UTC # Time Zone
ports:
- "3000:3000"