Remove duplicated files (#1098)

This commit is contained in:
Leendert de Borst
2025-08-07 07:47:59 +02:00
committed by Leendert de Borst
parent 86aef6961c
commit b6b476f9c8
2 changed files with 0 additions and 62 deletions

View File

@@ -1,42 +0,0 @@
services:
postgres:
image: aliasvault-postgres
build:
context: .
dockerfile: apps/server/Databases/AliasServerDb/Dockerfile
client:
image: aliasvault-client
build:
context: .
dockerfile: apps/server/AliasVault.Client/Dockerfile
api:
image: aliasvault-api
build:
context: .
dockerfile: apps/server/AliasVault.Api/Dockerfile
admin:
image: aliasvault-admin
build:
context: .
dockerfile: apps/server/AliasVault.Admin/Dockerfile
reverse-proxy:
image: aliasvault-reverse-proxy
build:
context: .
dockerfile: apps/server/Dockerfile
smtp:
image: aliasvault-smtp
build:
context: .
dockerfile: apps/server/Services/AliasVault.SmtpService/Dockerfile
task-runner:
image: aliasvault-task-runner
build:
context: .
dockerfile: apps/server/Services/AliasVault.TaskRunner/Dockerfile

View File

@@ -1,20 +0,0 @@
services:
postgres-dev:
image: postgres:16-alpine
ports:
- "5433:5432"
volumes:
- ./database/postgres-dev:/var/lib/postgresql/data:rw
- ./apps/server/Databases/AliasServerDb/postgresql.conf:/etc/postgresql/postgresql.conf
environment:
- POSTGRES_DB=aliasvault
- POSTGRES_USER=aliasvault
- POSTGRES_PASSWORD=password
restart: "no"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U aliasvault"]
interval: 5s
timeout: 5s
retries: 5
start_period: 10s
command: ["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"]