33 lines
1.1 KiB
Markdown
33 lines
1.1 KiB
Markdown
**Purpose**: An application to securely communicate passwords over the web. Passwords automatically expire after a certain number of views and/or time has passed. Track who, what and when.
|
|
|
|
```jsx title="docker-compose.yml"
|
|
version: '3'
|
|
|
|
services:
|
|
passwordpusher:
|
|
image: pglombardo/pwpush-ephemeral:release
|
|
expose:
|
|
- 5100
|
|
restart: always
|
|
environment:
|
|
# Read Documention on how to generate a master key, then put it below
|
|
- PWPUSH_MASTER_KEY=${PWPUSH_MASTER_KEY}
|
|
networks:
|
|
docker_network:
|
|
ipv4_address: 192.168.5.170
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.passwordpusher.rule=Host(`pw.domain.com`)"
|
|
- "traefik.http.routers.passwordpusher.entrypoints=websecure"
|
|
- "traefik.http.routers.passwordpusher.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.passwordpusher.loadbalancer.server.port=5100"
|
|
|
|
networks:
|
|
docker_network:
|
|
external: true
|
|
```
|
|
|
|
```jsx title=".env"
|
|
PWPUSH_MASTER_KEY=<PASSWORD> # Read Documention on how to generate a master key, then put it here
|
|
```
|