feat: add new services
Added actual budget, immitch with all other micro-services and vaultwarden
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1 +1,6 @@
|
||||
.env
|
||||
|
||||
data/
|
||||
|
||||
caddy/data/
|
||||
caddy/config/
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
include:
|
||||
- services/caddy.yml
|
||||
- services/vaultwarden.yml
|
||||
- services/actual.yml
|
||||
- services/immich.yml
|
||||
|
||||
networks:
|
||||
caddy_net:
|
||||
|
||||
9
services/actual.yml
Normal file
9
services/actual.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
services:
|
||||
actual:
|
||||
image: actualbudget/actual-server:latest
|
||||
restart: unless-stopped
|
||||
user: "1000:1000"
|
||||
ports:
|
||||
- "127.0.0.1:8081:5006"
|
||||
volumes:
|
||||
- ../data/actual:/data
|
||||
49
services/immich.yml
Normal file
49
services/immich.yml
Normal file
@@ -0,0 +1,49 @@
|
||||
services:
|
||||
immich-server:
|
||||
image: ghcr.io/immich-app/immich-server:release
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:8082:2283"
|
||||
environment:
|
||||
- DB_HOSTNAME=immich-postgres
|
||||
- DB_USERNAME=${IMMICH_DB_USER}
|
||||
- DB_PASSWORD=${IMMICH_DB_PASSWORD}
|
||||
- DB_DATABASE_NAME=immich
|
||||
- REDIS_HOSTNAME=immich-redis
|
||||
volumes:
|
||||
- ../data/immich/photos:/usr/src/app/upload
|
||||
depends_on:
|
||||
- immich-postgres
|
||||
- immich-redis
|
||||
networks:
|
||||
- immich_internal
|
||||
|
||||
immich-machine-learning:
|
||||
image: ghcr.io/immich-app/immich-machine-learning:release
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ../data/immich/ml-cache:/cache
|
||||
networks:
|
||||
- immich_internal
|
||||
|
||||
immich-redis:
|
||||
image: redis:7-alpine
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- immich_internal
|
||||
|
||||
immich-postgres:
|
||||
image: tensorchord/pgvecto-rs:pg14-v0.2.0
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- POSTGRES_USER=${IMMICH_DB_USER}
|
||||
- POSTGRES_PASSWORD=${IMMICH_DB_PASSWORD}
|
||||
- POSTGRES_DB=immich
|
||||
volumes:
|
||||
- ../data/immich/postgres:/var/lib/postgresql/data
|
||||
networks:
|
||||
- immich_internal
|
||||
|
||||
networks:
|
||||
immich_internal:
|
||||
driver: bridge
|
||||
13
services/vaultwarden.yml
Normal file
13
services/vaultwarden.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
restart: unless-stopped
|
||||
user: "1000:1000"
|
||||
ports:
|
||||
- "127.0.0.1:8080:80"
|
||||
environment:
|
||||
- DOMAIN=https://vault.sauravdhakal.com.np
|
||||
# - ADMIN_TOKEN=${VAULTWARDEN_ADMIN_TOKEN}
|
||||
- SIGNUPS_ALLOWED=true # disable after you create your account
|
||||
volumes:
|
||||
- ../data/vaultwarden:/data
|
||||
Reference in New Issue
Block a user