Skip to content

Commit 529902c

Browse files
committed
Merge branch 'main' of github.com:romkey/pdxhackerspace-hackstack
2 parents 6becad8 + 78a2a3e commit 529902c

17 files changed

Lines changed: 13803 additions & 0 deletions

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,17 @@ dnsmasq/conf/hosts.d/
1414
glances/glances.conf
1515
glances/glances.pwd
1616

17+
grafana/config/grafana.ini
18+
1719
home-assistant/config/
1820

21+
influxdb/config/influx-configs
22+
1923
invidious/config/config.yml
2024
invidious/config/sql/
2125

26+
jellyfin/config/
27+
2228
mopidy/conf/mopidy.conf
2329

2430
mosquitto/config/mosquitto.conf
@@ -33,6 +39,8 @@ redis/conf/
3339

3440
rtlamr2mqtt/config.yaml
3541

42+
telegraf/config/telegraf.conf
43+
3644
upsd/config/
3745

3846
wiki/config.yml

chronograf/.env.example

Whitespace-only changes.

chronograf/docker-compose.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
services:
2+
chronograf:
3+
image: chronograf
4+
container_name: chronograf
5+
hostname: chronograf
6+
# command: chronograf --influxdb-url=http://influxdb:8086
7+
restart: unless-stopped
8+
# ports:
9+
# - 8888:8888
10+
volumes:
11+
- ../../lib/chronograf:/var/lib/chronograf
12+
networks:
13+
- proxy
14+
- influxdb
15+
env_file:
16+
- .env
17+
networks:
18+
proxy:
19+
name: nginx-proxy-net
20+
external: true
21+
influxdb:
22+
name: influxdb-net
23+
external: true

comfy-ui/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GPU_COUNT=1

comfy-ui/docker-compose.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# https://github.com/fcogomez/ComfyUI
2+
services:
3+
comfy-ui:
4+
image: fcogomez/comfy-ui:latest
5+
container_name: comfy-ui
6+
hostname: comfy-ui
7+
networks:
8+
- proxy
9+
volumes:
10+
- ../../lib/comfy-ui:/storage
11+
ports:
12+
- 8188:8188
13+
env_file:
14+
- .env
15+
deploy:
16+
resources:
17+
reservations:
18+
devices:
19+
- driver: nvidia
20+
count: "${GPU_COUNT}"
21+
capabilities: [gpu]
22+
networks:
23+
proxy:
24+
name: nginx-proxy-net
25+
external: true

grafana/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BACKUP_DATABASE_URLS=sqlite3://opt/lib/grafana/grafana.db

grafana/config/grafana.ini.example

Whitespace-only changes.

grafana/docker-compose.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
services:
2+
grafana:
3+
image: grafana/grafana-enterprise
4+
container_name: grafana
5+
hostname: grafana
6+
restart: unless-stopped
7+
volumes:
8+
- ../../lib/grafana:/var/lib/grafana
9+
- ../../log/grafana:/var/log/grafana
10+
- ./config:/etc/grafana
11+
# ports:
12+
# - 3000:3000
13+
networks:
14+
- proxy
15+
- influxdb
16+
networks:
17+
proxy:
18+
name: nginx-proxy-net
19+
external: true
20+
influxdb:
21+
name: influxdb-net
22+
external: true

influxdb/.env.example

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
DOCKER_INFLUXDB_INIT_MODE=setup
2+
DOCKER_INFLUXDB_INIT_USERNAME=USERNAME
3+
DOCKER_INFLUXDB_INIT_PASSWORD=PASSWORD
4+
#DOCKER_INFLUXDB_INIT_ADMIN_TOKEN_FILE=
5+
DOCKER_INFLUXDB_INIT_ORG=docs
6+
DOCKER_INFLUXDB_INIT_BUCKET=home

influxdb/config/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)