The aim of this project is to use the "docker" technology to install a complete Web service. This service can run multiple tasks, in this case: Wordpress, phpMyAdmin, and a SQL database. For a better understanding about the project, check this link.
Feel free to download the project:
git clone https://github.com/msoares-prog/ft_server.git
To build a docker image:
docker build -t ft_server .
Run image:
docker run -it -p 80:80 -p 443:443 ft_server
Browser:
https://localhost
https://localhost/wordpress
https://localhost/phpmyadmin
Delete image:
docker rm $(docker ps -a | grep ft_server | cut -d ' ' -f 1)
Some links that helped me to study for the project:
- SSL Certificate;
- LEMP stack;
- Docker - Playlist;
- phpmyadmin;
- Install WordPress;
- Nginx.