feat: vaultwarden! Communication via host!
This commit is contained in:
parent
2707c7d0ee
commit
bf79d2bfab
8 changed files with 99 additions and 18 deletions
|
|
@ -16,7 +16,9 @@ services:
|
|||
- /home/hane/pihanepi/config/nginx/nginx.conf:/etc/nginx/nginx.conf:ro,Z
|
||||
- /home/hane/pihanepi/config/nginx/fastcgi_params:/etc/nginx/fastcgi_params:ro,Z
|
||||
- /home/hane/pihanepi/config/nginx/fastcgi.conf:/etc/nginx/fastcgi.conf:ro,Z
|
||||
|
||||
# We also create and map a certs folder for TLS
|
||||
- /home/hane/pihanepi/config/nginx/certs:/etc/nginx/certs/
|
||||
|
||||
# Logs folder
|
||||
- /home/hane/pihanepi/datamount/nginx/log:/var/log/nginx:Z
|
||||
# Web root folder
|
||||
|
|
|
|||
38
compose/vault/compose.yaml
Normal file
38
compose/vault/compose.yaml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
|
||||
services:
|
||||
nginx:
|
||||
name: vaultmirror
|
||||
#image: hane-dokuwiki-image:dokuwiki-fixed-volume
|
||||
image: vaultwarden/server:latest-alpine
|
||||
build: ./
|
||||
volumes:
|
||||
# Data store
|
||||
- /home/hane/pihanepi/datamount/vault/data:/data
|
||||
|
||||
# Logs folder
|
||||
#- /home/hane/pihanepi/datamount/nginx/log:/var/log/nginx:Z
|
||||
#- ./apache2.conf:/etc/apache2/apache2.conf
|
||||
#- type: bind
|
||||
# source: ./001-wiki.conf
|
||||
# target: /etc/apache2/sites-enabled/001-wiki.conf
|
||||
#- ./init.sh:/init.sh
|
||||
#- ${WIKI_DATA:-/path/to/data}:/var/www/dokuwiki
|
||||
ports:
|
||||
- "8000:80/tcp"
|
||||
#- "8080:80/udp"
|
||||
#- "44345:443/tcp"
|
||||
#- "44344:443/udp"
|
||||
#entrypoint: /init.sh
|
||||
#entrypoint: bash
|
||||
stdin_open: true # docker run -i
|
||||
tty: true # docker run -t
|
||||
|
||||
#volumes:
|
||||
# dokuwiki:
|
||||
# external: true
|
||||
# labels:
|
||||
# - "dev.roboces.wiki=Dokuwiki volume"
|
||||
# name: dokuwiki
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue