first commit
This commit is contained in:
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
services:
|
||||
|
||||
vaultwarden:
|
||||
container_name: vaultwarden
|
||||
hostname: vaultwarden
|
||||
image: vaultwarden/server:latest
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
nginx:
|
||||
# expose:
|
||||
# - 80 # Web UI
|
||||
# - 443 # Web UI
|
||||
ports:
|
||||
- 8090:80
|
||||
- 8100:443
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ./data:/data
|
||||
|
||||
networks:
|
||||
nginx:
|
||||
external: true
|
||||
Reference in New Issue
Block a user