pml

A simple password management web application.

MIT License

Stars
3
Committers
3

Password Manager Lite

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.