-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
24 lines (23 loc) · 843 Bytes
/
docker-compose.yml
File metadata and controls
24 lines (23 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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: