AnonAddy is an open-source software that allows you to create unlimited disposable email addresses. It helps you protect your privacy and avoid spam while using the internet. Here's a step-by-step tutorial on how to install AnonAddy on Fedora CoreOS latest:
AnonAddy runs on Docker, so you need to install Docker first. To install Docker on Fedora CoreOS latest, follow these steps:
sudo dnf install docker
sudo systemctl start docker
The next step is to create a Docker Compose file. A Docker Compose file defines the containers, networks, and volumes required to run AnonAddy. Here's how to create a Docker Compose file:
mkdir anonaddy
cd anonaddy
nano docker-compose.yml
version: '3'
services:
anonaddy:
image: theanonaddy/anonaddy:latest
restart: always
environment:
- URL=https://your-domain.com
- DB_HOST=anonaddy-db
- DB_PORT=3306
- DB_NAME=anonaddy
- DB_USERNAME=anonaddy
- DB_PASSWORD=your-password
- MAIL_DRIVER=smtp
- MAIL_HOST=your-mail-host
- MAIL_PORT=your-mail-port
- MAIL_USERNAME=your-mail-username
- MAIL_PASSWORD=your-mail-password
volumes:
- anonaddy-data:/var/www/html/data
anonaddy-db:
image: mariadb:10.5
restart: always
environment:
- MYSQL_ROOT_PASSWORD=your-root-password
- MYSQL_DATABASE=anonaddy
- MYSQL_USER=anonaddy
- MYSQL_PASSWORD=your-password
volumes:
- anonaddy-db-data:/var/lib/mysql
volumes:
anonaddy-data:
anonaddy-db-data:
Ctrl + X
, then Y
, and finally Enter
.After creating the Docker Compose file, you can start AnonAddy. Here's how:
sudo docker-compose up -d
The final step is to configure AnonAddy. Here's how:
your-domain.com
is the domain name you entered in the Docker Compose file.That's it! You have successfully installed and configured AnonAddy on Fedora CoreOS latest.
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!