Skip to content

jaywcjlove/pml

Repository files navigation

Password Manager Lite

Node.js CI Docker Image Version (latest by date) Docker Image Size (latest by date) Docker Pulls

Password Manager Lite. A simple password management web application.

Docker

Create a docker-compose.yml file and add the following configuration:

version: '3.8'
services:
  postgres:
    image: postgres:latest
    environment:
      - POSTGRES_PASSWORD=wcjiang
    restart: always

  pml:
    image: pml:latest
    ports:
      - 3560:3002
    environment:
      - DB_LOGGING=false
      - POSTGRES_HOST=postgres
      - POSTGRES_USER=postgres
      - POSTGRES_PASSWORD=wcjiang
      - POSTGRES_DB=pml
    depends_on:
      - postgres

Run the following command to start the container

docker-compose --project-name pml-server up -d
docker-compose -p pml-server -f docker-compose.yml down --remove-orphans --rmi local -v
# Or
docker stack deploy -c docker-compose.yml pml-server

License

Licensed under the MIT License.

About

A simple password management web application.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages