SimpleLogin

Open source email alias solution to protect your email address. Comes with browser extensions and mobile apps.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.3"
services:
  app:
    container_name: sl-migration
    image: simplelogin/app:3.4.0
    volumes:
      - $(pwd)/sl:/sl
      - $(pwd)/sl/upload:/code/static/upload
      - $(pwd)/dkim.key:/dkim.key
      - $(pwd)/dkim.pub.key:/dkim.pub.key
      - $(pwd)/simplelogin.env:/code/.env
    networks:
      - sl-network
    command: flask db upgrade
    restart: always
networks:
  sl-network:
    external: true

Resources

Website: https://simplelogin.io/

GitHub: https://github.com/simple-login/app

Docker Hub: https://hub.docker.com/r/simplelogin/app

Configuration: https://github.com/simple-login/app#run-simplelogin-docker-containers