This is a dockerized filesender for evaluation purposes. It uses mocksaml.com as the IdP and mailpit
more information can be found here: https://filsender.org
To setup the filesender locally please follow this instruction:
- git pull git@github.com:ETH-NEXUS/filesender.git
- docker compose up -d
- goto https://localhost
- To check emails goto http://localhost:8025
Or you just want to go for the pre-built docker image using this docker-compose.yml file:
services:
filesender:
image: ethnexus/filesender
ports:
- 80:80
- 443:443
depends_on:
- mailpit
restart: unless-stopped
mailpit:
image: axllent/mailpit:v1.28
hostname: mailpit
restart: unless-stopped
ports:
- 8025:8025