Created
October 15, 2023 20:33
-
-
Save soulaway/d0566a800b9f7ac4e9d9e99e8603ba9f to your computer and use it in GitHub Desktop.
JAMES smptp server on AWS Amazon Linux 2 AMI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# JAMES smptp server on AWS Amazon Linux 2 AMI (java 11) | |
sudo yum update -y | |
sudo amazon-linux-extras install docker | |
sudo yum install docker | |
sudo service docker start | |
sudo usermod -a -G docker ec2-user | |
sudo docker info | |
sudo yum install git | |
git clone https://github.com/apache/james-project.git | |
cd james-project/ | |
sudo docker build -t james/project dockerfiles/compilation/java-11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment