added siyuan and grafana

This commit is contained in:
dominikhoebert 2025-03-06 12:29:25 +01:00
parent edbda9f7a0
commit 4ae8aaf341
3 changed files with 51 additions and 0 deletions

1
.gitignore vendored
View File

@ -68,4 +68,5 @@ reverse-proxy-exercise/letsencrypt/
ollama/ollama/
ollama/webui/
rustdesk/data/
siyuan/workspace/

24
grafana/compose.yml Normal file
View File

@ -0,0 +1,24 @@
#
#
name: grafana
services:
grafana:
container_name: grafana
image: grafana/grafana
environment:
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_BASIC_ENABLED=false
ports:
- 3000:3000/tcp
volumes:
- ./provisioning:/etc/grafana/provisioning
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
- proxy
networks:
proxy:
external: true

26
siyuan/compose.yml Normal file
View File

@ -0,0 +1,26 @@
# https://github.com/siyuan-note/siyuan
#
name: siyuan
services:
siyuan:
container_name: siyuan
image: b3log/siyuan
command: ['--workspace=/siyuan/workspace/', '--accessAuthCode=hello']
ports:
- 6806:6806
volumes:
- ./workspace:/siyuan/workspace
restart: unless-stopped
environment:
# A list of time zone identifiers can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
- TZ=Europe/Vienna
networks:
- proxy
networks:
proxy:
external: true