Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration.
Using Compose is basically a three-step process:
Define your app’s environment with a
Dockerfile
so it can be reproduced anywhere.Define the services that make up your app in
docker-compose.yml
so they can be run together in an isolated environment.Run
docker-compose up
and Compose starts and runs your entire app.
Install Docker compose file
- DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
- mkdir -p $DOCKER_CONFIG/cli-plugins
- curl -SL https://github.com/docker/compose/releases/download/v2.19.0/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
- chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
- docker compose version
Example
version: '3.3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
volumes:
db_data: {}
docker-compose up -d
docker-compose down
Example -2
version: '3.3'
services:
db:
image: ramansharma95/mysql
webapp:
image: ramansharma95/webapp
ports:
- "84:80"
Run the following command in mysql container (docker exec -it <<containerid>> bash)
mysql -uroot -pwhizlabs
create database company;
use company;
create table employee ( name varchar(30), mobile varchar(30));
select * from employee;
Docker Compose Python Example
Docker Compose multi Docker file Example
Docker Compose with Custom Network
Docker Compose with Predefined network
Docker Compose Examples
Hi sir, i got error "Connection failed: php_network_getaddresses: getaddrinfo failed: Name or service not known".
DeleteI am using ramansharma95/mysql && ramansharma95/webapp in docker swarm.
web service in master node & db in work1 node both instance are getting ping to each other.
i use same image to docker compose it's work but not in docker swarm.
Kindly suggest me the same ...
Thank you,
Akshay Sawant.
docker swarm you need to use the concept of service
DeletePlease follow how to create 2 services one is web and other is db and create a overlay network and run these services on that network and try
Hi Raman sir
DeleteHow are you?
Gadilinga here
1)Can we include a docker file in compose file, please provide me the example if you have.
2)In postgresql compose how to execute scripts.
Check this https://docs.docker.com/compose/gettingstarted/
DeleteHi Raman Sir,
/65.1.110.150:8000
DeleteI followed the steps of example 1. And Tried accessing below URL: http
but getting the below error:
"Gateway Timeout
Server error - server 65.1.110.150 is unreachable at this moment.
Please retry the request or contact your administrator."
Check port 8000 is opened on the server
Delete