Tag: docker compose

Setup project running PHP, Laravel with Docker

After learning about Docker convenience and some of the most commonly used concepts of Docker, let’s do an example of setting up a project to run Laravel on Docker, with services like php, mysql, server nginx. What we will do: – Install nginx, mysql, php -> Test run in browser with php web server nginx – Install […]

Read more...

Some basic concepts and commands are commonly used in Docker

Directives in Dockerfile such as RUN, FROM, CMD … to perform tasks that automatically generate Docker images. File docker-compose.yml to create services to run specific applications, for example create Apache, MySQL, PHP-FPM,…       1. Dockerfile Directives in Dockerfile such as RUN, FROM, CMD … to perform tasks that automatically generate Docker images. Use […]

Read more...