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:
|
||||
|
||||
app:
|
||||
image: linuxserver/heimdall:${HEIMDALL_VERSION}
|
||||
image: linuxserver/heimdall:2.4.10
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
|
||||
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:
|
||||
|
||||
grafana:
|
||||
image: grafana/grafana:${GRAFANA_VERSION}
|
||||
image: grafana/grafana:8.1.3
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "3000"
|
||||
|
@ -36,7 +37,7 @@ services:
|
|||
|
||||
|
||||
grafanadb:
|
||||
image: postgres:${POSTGRES_VERSION}
|
||||
image: postgres:13
|
||||
volumes:
|
||||
- ${VOLUMES_PATH}/grafanadb:/var/lib/postgresql/data
|
||||
networks:
|
||||
|
@ -51,7 +52,7 @@ services:
|
|||
|
||||
|
||||
influxdb:
|
||||
image: influxdb:${INFLUXDB_VERSION}
|
||||
image: influxdb:1.8
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- web
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
|
||||
app:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
|
||||
cups:
|
||||
|
@ -7,7 +9,7 @@ services:
|
|||
- /var/run/dbus:/var/run/dbus
|
||||
- ${VOLUMES_PATH}/cups:/etc/cups
|
||||
devices:
|
||||
- /dev/usb/lp0
|
||||
- /dev/usblp0
|
||||
privileged: true
|
||||
network_mode: host
|
||||
labels:
|
||||
|
@ -17,5 +19,4 @@ services:
|
|||
- "traefik.http.services.cups.loadbalancer.server.port=631"
|
||||
- "docker.group=print"
|
||||
restart: unless-stopped
|
||||
pull_policy: build
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
|
||||
traefik:
|
||||
image: traefik:${TRAEFIK_VERSION}
|
||||
image: traefik:v2.4
|
||||
restart: always
|
||||
ports:
|
||||
- "80:80"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#/bin/bash/
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker compose build --pull);
|
||||
(cd "$dir" && echo "[$dir]" && docker-compose build);
|
||||
done
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker compose pull);
|
||||
(cd "$dir" && echo "[$dir]" && docker-compose pull);
|
||||
done
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#/bin/bash/
|
||||
|
||||
function pull {
|
||||
(cd "$1" && echo "[$1]" && docker compose pull);
|
||||
(cd "$1" && echo "[$1]" && docker-compose pull);
|
||||
}
|
||||
|
||||
pull proxy;
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
|
||||
homeassistant:
|
||||
image: ghcr.io/home-assistant/home-assistant:stable
|
||||
volumes:
|
||||
- ${VOLUMES_PATH}/homeassistent:/config
|
||||
- /run/dbus:/run/dbus:ro
|
||||
environment:
|
||||
- TZ=Europe/Berlin
|
||||
restart: unless-stopped
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
function up {
|
||||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
||||
(cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}");
|
||||
}
|
||||
|
||||
up proxy;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
function up {
|
||||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
||||
(cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}");
|
||||
}
|
||||
|
||||
up proxy;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#/bin/bash/
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker compose down);
|
||||
(cd "$dir" && echo "[$dir]" && docker-compose down);
|
||||
done
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
version: "3.3"
|
||||
services:
|
||||
|
||||
host:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
qbittorrent:
|
||||
image: linuxserver/qbittorrent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue