Fix: Soketi

This commit is contained in:
peaklabs-dev
2024-10-07 18:08:15 +02:00
parent 16817993fa
commit 837796debf
2 changed files with 15 additions and 12 deletions

BIN
public/svgs/soketi.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -1,20 +1,23 @@
# documentation: https://docs.soketi.app # documentation: https://docs.soketi.app
# slogan: Soketi is your simple, fast, and resilient open-source WebSockets server. # slogan: Soketi is your simple, fast, and resilient open-source WebSockets server.
# tags: websockets,open,source,messaging # tags: websockets,open,source,messaging
# logo: svgs/soketi.png # logo: svgs/soketi.jpeg
# port: 6001 # port: 6001
services: services:
soketi: soketi:
container_name: soketi_server image: "quay.io/soketi/soketi:1.4-16-debian"
restart: unless-stopped
image: 'quay.io/soketi/soketi:1.6-16-alpine'
expose:
- 6001
environment: environment:
- 'SOKETI_DEBUG=${DEBUG:-0}' - SERVICE_FQDN_SOKETI_6001
- 'SOKETI_DEFAULT_APP_ID=${SOKETI_APP_ID}' - SOKETI_DEBUG=${DEBUG:-0}
- 'SOKETI_DEFAULT_APP_KEY=${SOKETI_APP_KEY}' - SOKETI_DEFAULT_APP_ID=${SOKETI_APP_ID}
- 'SOKETI_DEFAULT_APP_SECRET=${SOKETI_APP_SECRET}' - SOKETI_DEFAULT_APP_KEY=${SOKETI_APP_KEY}
- 'SOKETI_PUSHER_SCHEME=${SOKETI_PUSHER_SCHEME:-https}' - SOKETI_DEFAULT_APP_SECRET=${SOKETI_APP_SECRET}
- 'SOKETI_DEFAULT_APP_ENABLE_CLIENT_MESSAGES=${DEFAULT_APP_ENABLE_CLIENT_MESSAGES}' - SOKETI_PUSHER_SCHEME=${SOKETI_PUSHER_SCHEME:-https}
- SOKETI_DEFAULT_APP_ENABLE_CLIENT_MESSAGES=${DEFAULT_APP_ENABLE_CLIENT_MESSAGES}
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:6001/ || exit 1"]
interval: 5s
timeout: 20s
retries: 3