AppsPastebinsPassword Pusher

Password Pusher

A dead-simple application to securely communicate passwords (or text) over the web. Passwords automatically expire after a certain number of views and/or time has passed.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '2.1'
 
services:
  postgres:
    image: docker.io/postgres:15
    volumes:
      - /var/lib/postgresql/data:/var/lib/postgresql/data
    ports:
      - "5432:5432"
    environment:
      POSTGRES_USER: passwordpusher_user
      POSTGRES_PASSWORD: passwordpusher_passwd
      POSTGRES_DB: passwordpusher_db
 
  passwordpusher:
    image: docker.io/pglombardo/pwpush:release
    environment:
      DATABASE_URL: 'postgres://passwordpusher_user:passwordpusher_passwd@postgres:5432/passwordpusher_db'
    ports:
      - "5100:5100"
    depends_on:
      - postgres
    links:
     - postgres:postgres

Resources

Website: https://pwpush.com/

Docs: https://docs.pwpush.com/

GitHub: https://github.com/pglombardo/PasswordPusher

Docker Hub: https://hub.docker.com/r/pglombardo/pwpush

Configuration: https://docs.pwpush.com/docs/installation/