lantongxue / rustdesk-api-server-pro

🚀This is an open source Api server based on the open source RustDesk client, the implementation of the client all Api interfaces, and provides a Web-UI for the management of data.
https://sephp.com/open-source/rustdesk-api-server-pro/
GNU Affero General Public License v3.0
47 stars 8 forks source link

Docker Compose #13

Closed hirenshah closed 1 week ago

hirenshah commented 2 weeks ago

Any chance you can provide a Docker Compose example please?

lantongxue commented 2 weeks ago

See the docker deployment method

innovara commented 2 weeks ago

Without environment variables for admin user and password:

services:
  rustdesk-api-server-pro:
    container_name: rustdesk-api-server-pro
    image: ghcr.io/lantongxue/rustdesk-api-server-pro:latest
    volumes:
      - ./server.yaml:/app/server.yaml
    network_mode: host
    restart: unless-stopped

With environment variables:

services:
  rustdesk-api-server-pro:
    container_name: rustdesk-api-server-pro
    image: ghcr.io/lantongxue/rustdesk-api-server-pro:latest
    environment:
      - "ADMIN_USER=youruser"
      - "ADMIN_PASS=yourpassword"
    volumes:
      - ./server.yaml:/app/server.yaml
    network_mode: host
    restart: unless-stopped

Please note that in this example server.yaml and the compose file are in the same directory. You'd need to adjust the first part of the volume if that's not the case.

lantongxue commented 1 week ago

thank you