[SOLVED] Websocket setup on Synology

Hello

I am using ssl from cloudflare (not the one from synology), I have not tried in other configuration (without ssl or other ssl providers), but it should work.
The email settings you can add later, there are not necessary from first time.
Admin_token it is the admin password for respectiv access panel, also not necessary from first time.
Network is bridge setup in docker.

If you know how to work with docker compose you can use the following configuration. Folder “bit” you need to create it under the coresponding path in synology.

version: ‘3’
services:
bitwarden:
image: bitwardenrs/server
container_name: bitwardenrs-server
ports:
- “32771:3012”
- “32772:80”
environment:
ADMIN_TOKEN: “your_ADMIN_pass”
SMTP_HOST: “your_server”
SMTP_PORT: 587
SMTP_FROM: “your_email”
SMTP_FROM_NAME: “Bitwarden_RS”
SMTP_USERNAME : “email_user”
SMTP_PASSWORD: “your_password”
volumes:
- /volume1/docker/bit:/data
network_mode: bridge

Anyway, the docker confirguration for bitwardenrs works straight away from docker in synolgy.