https://github.com/masipcat/converse-js-docker
https://github.com/masipcat/converse-js-docker
conversejs docker
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/masipcat/converse-js-docker
- Owner: masipcat
- License: gpl-3.0
- Created: 2019-05-22T13:32:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-09T18:42:35.000Z (almost 6 years ago)
- Last Synced: 2025-04-11T18:57:20.506Z (about 2 months ago)
- Topics: conversejs, docker
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/masipcat/conversejs
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Self-hosted Converse.js server
This image of `conversejs` is intended to run behind a reverse proxy with TLS support.
## Run
Using docker:
```console
docker run -d -p 8000:8000 masipcat/conversejs:latest
```Using docker-compose:
```yaml
version: "3.3"
services:
converse:
image: masipcat/conversejs:5.0.0
ports:
- 8000:8000
environment:
- WS_SERVICE_URL=wss://xmpp.example.com/ws/
restart: always
```## Build
```console
docker build -t conversejs --build-arg VERSION=v5.0.0 .
```