Skip to content

Instantly share code, notes, and snippets.

View patrickhult's full-sized avatar

patrick patrickhult

  • Sweden
  • 10:46 (UTC +02:00)
View GitHub Profile
---
version: "2.1"
services:
duplicati:
image: linuxserver/duplicati
container_name: duplicati
environment:
- PUID=998
- PGID=100
- TZ=America/Denver
---
version: "2"
services:
bookstack:
image: linuxserver/bookstack
container_name: bookstack
environment:
- PUID=998
- PGID=100
- DB_HOST=bookstack_db
---
version: "2"
services:
bitwardenrs:
image: bitwardenrs/server:latest
container_name: bitwardenrs
volumes:
- /srv/dev-disk-by-label-Files/Config/BitWardenRS:/data/
ports:
- 8100:80
version: '2.1'
services:
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- TZ=America/Denver
- WATCHTOWER_MONITOR_ONLY=true
---
version: '2'
services:
openproject:
image: openproject/community:11
container_name: openproject
ports:
- 7070:80
environment:
- PUID=998
version: '2.1'
services:
matomo:
image: matomo
restart: always
ports:
- 8384:80
environment:
version: 2
services:
wallabag:
image: wallabag/wallabag
environment:
- MYSQL_ROOT_PASSWORD=wallaroot
- SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql
- SYMFONY__ENV__DATABASE_HOST=db
- SYMFONY__ENV__DATABASE_PORT=3306
- SYMFONY__ENV__DATABASE_NAME=wallabag
@patrickhult
patrickhult / gist:2acb16417888abd384c1191b59d987ee
Created November 18, 2022 00:14 — forked from dnburgess/gist:12bd77a4b7c8d720dc8c2d033494b456
DB Tech Media Server Setup - prometheus.yml
global:
scrape_interval: 5s
external_labels:
monitor: 'node'
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['192.168.68.240:9292'] ## IP Address of the localhost
- job_name: 'node-exporter'
static_configs:
---
version: "2"
services:
db_recipes:
image: postgres
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres