ci(linux): add build workflow + Docker build instructions
build / build-linux-amd64 (push) Successful in 1m48s
build / build-linux-amd64 (push) Successful in 1m48s
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
# Copy to .env and edit. docker-compose reads it automatically.
|
||||
|
||||
# --- Required ----------------------------------------------------------------
|
||||
|
||||
# Public domain clients connect to. hbbs advertises this as the relay address.
|
||||
RUSTDESK_DOMAIN=rd.gamecom.ch
|
||||
|
||||
# --- Bootstrap admin ---------------------------------------------------------
|
||||
# Seeded into the users table on the FIRST startup only (when users is empty).
|
||||
# Subsequent restarts ignore these — change the password via the admin UI.
|
||||
# Without these set on first boot, you'll have no way to log in.
|
||||
|
||||
RUSTDESK_BOOTSTRAP_ADMIN_USERNAME=admin
|
||||
RUSTDESK_BOOTSTRAP_ADMIN_PASSWORD=changeme
|
||||
|
||||
# --- Optional runtime --------------------------------------------------------
|
||||
|
||||
# Pre-shared key. "-" lets hbbs auto-generate on first run; "_" forces
|
||||
# encrypted-only mode without an explicit key.
|
||||
#RUSTDESK_KEY=-
|
||||
|
||||
# HTTP management API / admin UI port (pro-features). Set to 0 to disable.
|
||||
#RUSTDESK_HTTP_PORT=21114
|
||||
|
||||
# Force relay for all sessions even on LAN.
|
||||
#RUSTDESK_ALWAYS_USE_RELAY=Y
|
||||
|
||||
#RUST_LOG=info
|
||||
|
||||
# --- Optional build source ---------------------------------------------------
|
||||
# Override the upstream repo / branch the image is built from.
|
||||
|
||||
#RUSTDESK_GIT_URL=https://gitea.cstudio.ch/mike/rustdesk-server.git
|
||||
#RUSTDESK_GIT_BRANCH=pro-features
|
||||
|
||||
# --- Database connectivity ---------------------------------------------------
|
||||
DATABASE_URL=sqlite://./db_v2.sqlite3
|
||||
Reference in New Issue
Block a user