Compare commits
No commits in common. "0e1e41abfdbbbf0beae8fa77f12e48892b7d891a" and "d3f687ea90c278e0960ad3e127ebe71fc53b15af" have entirely different histories.
0e1e41abfd
...
d3f687ea90
15 changed files with 74 additions and 14 deletions
|
@ -1,7 +1,9 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
app:
|
app:
|
||||||
image: linuxserver/heimdall:${HEIMDALL_VERSION}
|
image: linuxserver/heimdall:2.4.10
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
app:
|
app:
|
||||||
|
|
46
finance/docker-compose.yaml
Normal file
46
finance/docker-compose.yaml
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
|
||||||
|
fireflyiii:
|
||||||
|
image: fireflyiii/core:latest
|
||||||
|
volumes:
|
||||||
|
- ${VOLUMES_PATH}/finance/upload:/var/www/html/storage/upload
|
||||||
|
networks:
|
||||||
|
- web
|
||||||
|
- finance
|
||||||
|
env_file: .env
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.firefly.rule=Host(`finance.${DOMAIN}`)"
|
||||||
|
- "traefik.http.routers.firefly.entrypoints=web"
|
||||||
|
- "traefik.http.services.firefly.loadbalancer.server.port=8080"
|
||||||
|
- "traefik.docker.network=web"
|
||||||
|
- "docker.group=firefly"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: linuxserver/mariadb:latest
|
||||||
|
networks:
|
||||||
|
- finance
|
||||||
|
environment:
|
||||||
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||||
|
- MYSQL_USER=${DB_USERNAME}
|
||||||
|
- MYSQL_PASSWORD=${DB_PASSWORD}
|
||||||
|
- MYSQL_DATABASE=${DB_DATABASE}
|
||||||
|
volumes:
|
||||||
|
- ${VOLUMES_PATH}/firefly/db:/var/lib/mysql
|
||||||
|
labels:
|
||||||
|
- "docker.group=finance"
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
networks:
|
||||||
|
finance:
|
||||||
|
web:
|
||||||
|
external: true
|
|
@ -1,7 +1,8 @@
|
||||||
|
version: "3.3"
|
||||||
services:
|
services:
|
||||||
|
|
||||||
grafana:
|
grafana:
|
||||||
image: grafana/grafana:${GRAFANA_VERSION}
|
image: grafana/grafana:8.1.3
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
expose:
|
expose:
|
||||||
- "3000"
|
- "3000"
|
||||||
|
@ -36,7 +37,7 @@ services:
|
||||||
|
|
||||||
|
|
||||||
grafanadb:
|
grafanadb:
|
||||||
image: postgres:${POSTGRES_VERSION}
|
image: postgres:13
|
||||||
volumes:
|
volumes:
|
||||||
- ${VOLUMES_PATH}/grafanadb:/var/lib/postgresql/data
|
- ${VOLUMES_PATH}/grafanadb:/var/lib/postgresql/data
|
||||||
networks:
|
networks:
|
||||||
|
@ -51,7 +52,7 @@ services:
|
||||||
|
|
||||||
|
|
||||||
influxdb:
|
influxdb:
|
||||||
image: influxdb:${INFLUXDB_VERSION}
|
image: influxdb:1.8
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- web
|
- web
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
app:
|
app:
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
cups:
|
cups:
|
||||||
|
@ -7,7 +9,7 @@ services:
|
||||||
- /var/run/dbus:/var/run/dbus
|
- /var/run/dbus:/var/run/dbus
|
||||||
- ${VOLUMES_PATH}/cups:/etc/cups
|
- ${VOLUMES_PATH}/cups:/etc/cups
|
||||||
devices:
|
devices:
|
||||||
- /dev/usb/lp0
|
- /dev/usblp0
|
||||||
privileged: true
|
privileged: true
|
||||||
network_mode: host
|
network_mode: host
|
||||||
labels:
|
labels:
|
||||||
|
@ -17,5 +19,4 @@ services:
|
||||||
- "traefik.http.services.cups.loadbalancer.server.port=631"
|
- "traefik.http.services.cups.loadbalancer.server.port=631"
|
||||||
- "docker.group=print"
|
- "docker.group=print"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
pull_policy: build
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
traefik:
|
traefik:
|
||||||
image: traefik:${TRAEFIK_VERSION}
|
image: traefik:v2.4
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#/bin/bash/
|
#/bin/bash/
|
||||||
|
|
||||||
for dir in ./*/ ; do
|
for dir in ./*/ ; do
|
||||||
(cd "$dir" && echo "[$dir]" && docker compose build --pull);
|
(cd "$dir" && echo "[$dir]" && docker-compose build);
|
||||||
done
|
done
|
||||||
|
|
||||||
for dir in ./*/ ; do
|
for dir in ./*/ ; do
|
||||||
(cd "$dir" && echo "[$dir]" && docker compose pull);
|
(cd "$dir" && echo "[$dir]" && docker-compose pull);
|
||||||
done
|
done
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#/bin/bash/
|
#/bin/bash/
|
||||||
|
|
||||||
function pull {
|
function pull {
|
||||||
(cd "$1" && echo "[$1]" && docker compose pull);
|
(cd "$1" && echo "[$1]" && docker-compose pull);
|
||||||
}
|
}
|
||||||
|
|
||||||
pull proxy;
|
pull proxy;
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
homeassistant:
|
homeassistant:
|
||||||
image: ghcr.io/home-assistant/home-assistant:stable
|
image: ghcr.io/home-assistant/home-assistant:stable
|
||||||
volumes:
|
volumes:
|
||||||
- ${VOLUMES_PATH}/homeassistent:/config
|
- ${VOLUMES_PATH}/homeassistent:/config
|
||||||
- /run/dbus:/run/dbus:ro
|
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
|
|
||||||
function up {
|
function up {
|
||||||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
(cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}");
|
||||||
}
|
}
|
||||||
|
|
||||||
up proxy;
|
up proxy;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
|
|
||||||
function up {
|
function up {
|
||||||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
(cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}");
|
||||||
}
|
}
|
||||||
|
|
||||||
up proxy;
|
up proxy;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#/bin/bash/
|
#/bin/bash/
|
||||||
|
|
||||||
for dir in ./*/ ; do
|
for dir in ./*/ ; do
|
||||||
(cd "$dir" && echo "[$dir]" && docker compose down);
|
(cd "$dir" && echo "[$dir]" && docker-compose down);
|
||||||
done
|
done
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
version: "3.3"
|
||||||
services:
|
services:
|
||||||
|
|
||||||
host:
|
host:
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
qbittorrent:
|
qbittorrent:
|
||||||
image: linuxserver/qbittorrent
|
image: linuxserver/qbittorrent
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue