forked from michael.heier/umbrel-apps
b9c5e18021
Co-authored-by: Luke Childs <lukechilds123@gmail.com>
22 lines
533 B
YAML
22 lines
533 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: $APP_VAULTWARDEN_IP
|
|
APP_PORT: $APP_VAULTWARDEN_PORT
|
|
PROXY_AUTH_ADD: "false"
|
|
|
|
server:
|
|
image: vaultwarden/server:1.25.0@sha256:f3ebede27f1cf5e78373c3c4a429cf1fdd8d6b13528a2b9ca4fb3cb7cc681ba9
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/data
|
|
environment:
|
|
ROCKET_PORT: "${APP_VAULTWARDEN_PORT}"
|
|
networks:
|
|
default:
|
|
ipv4_address: $APP_VAULTWARDEN_IP
|