mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-28 12:57:01 -05:00
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
services:
|
|
reverse-proxy:
|
|
image: ghcr.io/lanedirt/aliasvault-reverse-proxy:latest
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./certificates/ssl:/etc/nginx/ssl:rw
|
|
depends_on:
|
|
- admin
|
|
- client
|
|
- api
|
|
- smtp
|
|
restart: always
|
|
|
|
client:
|
|
image: ghcr.io/lanedirt/aliasvault-client:latest
|
|
volumes:
|
|
- ./logs/msbuild:/src/msbuild-logs:rw
|
|
expose:
|
|
- "3000"
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
|
|
api:
|
|
image: ghcr.io/lanedirt/aliasvault-api:latest
|
|
expose:
|
|
- "3001"
|
|
volumes:
|
|
- ./database:/database:rw
|
|
- ./certificates/app:/certificates/app:rw
|
|
- ./logs:/logs:rw
|
|
env_file:
|
|
- .env
|
|
restart: always
|
|
|
|
admin:
|
|
image: ghcr.io/lanedirt/aliasvault-admin:latest
|
|
expose:
|
|
- "3002"
|
|
volumes:
|
|
- ./database:/database:rw
|
|
- ./certificates/app:/certificates/app:rw
|
|
- ./logs:/logs:rw
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
|
|
smtp:
|
|
image: ghcr.io/lanedirt/aliasvault-smtp:latest
|
|
ports:
|
|
- "25:25"
|
|
- "587:587"
|
|
volumes:
|
|
- ./database:/database:rw
|
|
- ./logs:/logs:rw
|
|
env_file:
|
|
- .env
|
|
restart: always
|