mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
added siyuan and grafana
This commit is contained in:
parent
edbda9f7a0
commit
4ae8aaf341
1
.gitignore
vendored
1
.gitignore
vendored
@ -68,4 +68,5 @@ reverse-proxy-exercise/letsencrypt/
|
|||||||
ollama/ollama/
|
ollama/ollama/
|
||||||
ollama/webui/
|
ollama/webui/
|
||||||
rustdesk/data/
|
rustdesk/data/
|
||||||
|
siyuan/workspace/
|
||||||
|
|
||||||
|
24
grafana/compose.yml
Normal file
24
grafana/compose.yml
Normal 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
26
siyuan/compose.yml
Normal 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
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user