-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: "3.8" | ||
services: | ||
skybridge: | ||
container_name: "skybridge" | ||
image: videah/skybridge:latest | ||
restart: always | ||
volumes: | ||
- skybridge:/app/database | ||
environment: | ||
# Base URL of where SkyBridge will be hosted without the protocol. | ||
- SKYBRIDGE_BASEURL="your.domain.com" | ||
# Random secret, generate with `openssl rand -base64 32`. | ||
- SKYBRIDGE_SECRET="" | ||
# Password used to make a SkyBridge instance private. | ||
- SKYBRIDGE_AUTH_PASSWORD="" | ||
# Should a bridge password be required to authenticate? | ||
- SKYBRIDGE_REQUIRE_AUTH_PASSWORD=true | ||
# Should a nice index page be shown on the root URL? | ||
- SKYBRIDGE_SHOW_INDEX=false | ||
# Allow backfilling/scrolling on timelines? (can cause issues on instances under heavy load) | ||
- SKYBRIDGE_ALLOW_BACKFILL = true | ||
|
||
volumes: | ||
skybridge: |