mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
10
passwordpusher/.env
Normal file
10
passwordpusher/.env
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Environment file for docker-compose.yaml
|
||||
# Generate new passwords with:
|
||||
# openssl rand -hex 32
|
||||
|
||||
# Fill in registry
|
||||
REGISTRY=
|
||||
|
||||
# PasswordPusher
|
||||
PWPUSHER_PORT=
|
||||
PWPUSHER_TITLE=
|
||||
24
passwordpusher/docker-compose.yaml
Normal file
24
passwordpusher/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
services:
|
||||
|
||||
# passwordpusher (https://github.com/pglombardo/PasswordPusher/blob/master/containers/docker/docker-compose-ephemeral.yml)
|
||||
passwordpusher:
|
||||
image: ${REGISTRY}/pwpush
|
||||
container_name: passwordpusher
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${PWPUSHER_PORT:-5100}:5100
|
||||
environment:
|
||||
PWP__BRAND__TITLE: ${PWPUSHER_TITLE:-PasswordPusher}
|
||||
PWP__PW__EXPIRE_AFTER_DAYS_DEFAULT: 1
|
||||
PWP__PW__EXPIRE_AFTER_VIEWS_DEFAULT: 2
|
||||
PWP__PW__ENABLE_RETRIEVAL_STEP: false
|
||||
PWP__PW__ENABLE_DELETABLE_PUSHES: false
|
||||
PWP__BRAND__SHOW_FOOTER_MENU: false
|
||||
PWP__SHOW_GDPR_CONSENT_BANNER: false
|
||||
PWP__GEN__SEPARATORS: '-'
|
||||
networks:
|
||||
- passwordpusher
|
||||
|
||||
networks:
|
||||
passwordpusher:
|
||||
external: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue