mirror of
https://github.com/rodneyosodo/homelab.git
synced 2026-08-07 07:15:03 +00:00
859c15b83e
Continuous Integration / pre-commit (push) Has been cancelled
Continuous Integration / docker-compose (push) Has been cancelled
Continuous Integration / terraform (bohr) (push) Has been cancelled
Continuous Integration / terraform (galana) (push) Has been cancelled
Continuous Integration / terraform (tana) (push) Has been cancelled
Continuous Integration / terraform (turkwel) (push) Has been cancelled
Continuous Integration / terraform (yala) (push) Has been cancelled
Continuous Integration / ansible (push) Has been cancelled
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
17 lines
391 B
YAML
17 lines
391 B
YAML
services:
|
|
vaultwarden:
|
|
container_name: vaultwarden
|
|
image: docker.io/vaultwarden/server:1.37.1
|
|
restart: unless-stopped
|
|
networks:
|
|
- homelab-network
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- ~/docker-volumes/vaultwarden-data:/data
|
|
environment:
|
|
- SIGNUPS_ALLOWED=false
|
|
- DOMAIN=${VAULTWARDEN_DOMAIN}
|
|
ports:
|
|
- 3010:80
|