feat: add new services

Added actual budget, immitch with all other micro-services and
vaultwarden
This commit is contained in:
SauravDhakal
2026-03-30 21:24:42 +05:45
parent 756165e975
commit 84e2af6200
5 changed files with 79 additions and 0 deletions

9
services/actual.yml Normal file
View 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
View 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
View 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