Skip to content

Latest commit

 

History

History
89 lines (67 loc) · 3.5 KB

multi_container_app.md

File metadata and controls

89 lines (67 loc) · 3.5 KB

Using Docker Compose

What is Docker Compose

Developing applications using Docker can become challenging when juggling multiple services and containers.
Docker Compose is the tool that will help you run multi-container application environments.

An application can consist of multiple containers running different services. It can be tedious to start and manage containers manually, so Docker created a useful tool that helps speed up the process - Docker Compose.

Docker Compose works by applying rules defined in a docker-compose.yaml file. The YAML file configures the application's services and includes rules specifying how you want them to run. With the file in place, you can start, stop, or rebuild all the services using a single command. Additionally, you can check the status of a service, display log outputs, and run one-off commands.

Docker Compose Basic Commands

Command	Description
docker-compose --help	show help, usage instructions for and arguments for the docker-compose command
docker-compose build	look for all services containing the build: statement in the docker-compose.yml file and run a docker build for each one
docker-compose run	run a one-time command against a service
docker-compose up	build, (re)create, start, and attach to containers for a service
docker-compose -f 	specify the location of a docker-compose configuration file by adding the -f flag
docker-compose start	start existing containers for a service
docker-compose stop	stop running containers (without removing them)
docker-compose pause	pause running containers of a service
docker-compose unpause	unpause paused containers of a service
docker-compose down	stop containers (and remove containers, networks, volumes, and images)
docker-compose ps	list containers within the docker-compose configuration file
docker-compose images	list images used by created containers
docker-compose ls	list running Compose projects

create a file named docker-compose.yaml in the same folder that you have cloned with the following contents.

version: "3.7"
services:
  web:
    image: nginx:latest
    container_name: web
    ports:
      - "8080:80"
    volumes:
      - ./src:/code
      - ./site.conf:/etc/nginx/conf.d/default.conf
    links:
        - php

  php:
    image: php:8-fpm
    container_name: php
    volumes:
      - ./src:/code

Running the Application:

From the directory where docker-compose.yaml file is present, run docker-compose up. This will bring up both the containers and the app will be accessible from http://localhost:8080.

Here you will notice that if the images are not available on your local machine then it will try to pull from docker hub.

web service:

This service will run web container from nginx image.

  • NGINX is open source software for web serving, reverse proxying, caching, load balancing, media streaming, and more. It started out as a web server designed for maximum performance and stability.

php service

This service will run php container from php8-pfm image.

  • (PHP: Hypertext Preprocessor) An extremely popular scripting language that is used to create dynamic Web pages. PHP code is embedded within HTML pages for server side execution.
<!DOCTYPE html>
  <html>
      <head>
          <title>Example</title>
      </head>
      <body>

          <?php
              echo "Hi, I'm a PHP script!";
          ?>

      </body>
  </html>

You'll see the following screen in your browser

Using Docker Compose