$ sudo docker-compose up
With the "-d" option it will run in the background.
$ sudo docker-compose up -d
To stop all the containers and remove the volumes and networks, run the below command.
$ sudo docker-compose down
The "-v" option will remove the created volumes. "-rmi local" will remove any images created via docker-compose file.
$ sudo docker-compose down -v -rmi local
To show the logs of the containers.
$ sudo docker-compose logs
To show the container processes on the host and their ip, port, state.
$ sudo docker-compose ps
To show the processes running inside each container of docker-compose.
$ sudo docker-compose top
To rebuild the image from the Dockerfile mentioned in the docker-compose file and starts all the services with the mentioned config.
$ sudo docker-compose build
Example1: docker-compose.yml
Here we are creating two containers with four volumes.
version: '3'
services:
drupal:
image: drupal
ports:
- 8080:80
volumes:
- drupal-modules:/var/www/html/modules
- drupal-profiles:/var/www/html/profiles
- drupal-themes:/var/www/html/themes
- drupal-sites:/var/www/html/sites
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: password
volumes:
drupal-modules:
drupal-profiles:
drupal-themes:
drupal-sites:
Example2: docker-compose.yml
version: '2'
services:
proxy:
build:
context: .
dockerfile: nginx.Dockerfile
ports:
- '80:80'
web:
image: httpd
volumes:
- ./html:/usr/local/apache2/htdocs/
nginx.Dockerfile (file contents):
FROM nginx:1.13
COPY nginx.conf /etc/nginx/conf.d/default.conf
nginx.conf file (file contents):
server {
listen 80;
location / {
proxy_pass http://web;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
Comments
Post a Comment