Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions blueprints/obscreen/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3.8"

services:
Comment thread
jr-k marked this conversation as resolved.
obscreen:
image: obscreen/obscreen:v2026.1.6
restart: unless-stopped
environment:
- SECRET_KEY=${SECRET_KEY}
- PORT=${PORT}
- FROZEN_VAR_EXTERNAL_URL=${FROZEN_VAR_EXTERNAL_URL}
volumes:
- obscreen-data:/app/data
- obscreen-license:/app/license
- /etc/localtime:/etc/localtime:ro

volumes:
obscreen-data:
obscreen-license:
Comment thread
jr-k marked this conversation as resolved.
Binary file added blueprints/obscreen/obscreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions blueprints/obscreen/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[variables]
main_domain = "${domain}"
secret_key = "${password:30}"

[config]
mounts = []

[[config.domains]]
serviceName = "obscreen"
port = 5_000
host = "${main_domain}"

[config.env]
SECRET_KEY = "${secret_key}"
FROZEN_VAR_EXTERNAL_URL = "http://${main_domain}"
PORT = "5000"
Comment thread
jr-k marked this conversation as resolved.
22 changes: 22 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4357,6 +4357,28 @@
"self-hosted"
]
},
{
"id": "obscreen",
"name": "Obscreen",
"version": "v2026.1.6",
"description": "Obscreen organizes your media and displays it on your TV, computer, tablet, or any browser.",
"logo": "obscreen.png",
"links": {
"github": "https://github.com/obscreen/obscreen",
"website": "https://obscreen.io/",
"docs": "https://docs.obscreen.io/"
},
"tags": [
"digital-signage",
"broadcast",
"presentation",
"media",
"monitor",
"screen",
"sharing",
"self-hosted"
]
},
{
"id": "obsidian-livesync",
"name": "Obsidian LiveSync",
Expand Down
Loading