mirror of
https://github.com/bitwarden/server.git
synced 2025-06-03 09:40:31 -05:00
26 lines
733 B
YAML
26 lines
733 B
YAML
services:
|
|
api:
|
|
image: api
|
|
ports:
|
|
- "4000:5000"
|
|
environment:
|
|
globalSettings__DataProtection__directory: /home/app/.aspnet/DataProtection-Keys
|
|
globalSettings__selfHosted: true
|
|
identity:
|
|
image: identity
|
|
ports:
|
|
- "33656:5000"
|
|
environment:
|
|
globalSettings__DataProtection__directory: /home/app/.aspnet/DataProtection-Keys
|
|
globalSettings__selfHosted: true
|
|
globalSettings__IdentityServer__CertificateLocation: /home/app/config/identity.pfx
|
|
volumes:
|
|
- /tmp/server:/home/app/config # identity.pfx exists here
|
|
mssql:
|
|
image: bitwarden/mssql:2024.10.0
|
|
container_name: bitwarden-mssql
|
|
ports:
|
|
- "1433:1433"
|
|
environment:
|
|
ACCEPT_EULA: true
|