January 4, 2021
Estimated Post Reading Time ~

Docker Compose



Step:-01: Installing Docker Compose
[code lang=bash]
# Installing Docker Compose
$ sudo curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
[/code]

Step:-02: Making the file executable
[code lang=bash]
# Making it executable
$ sudo chmod +x /usr/local/bin/docker-compose
[/code]

Step:-03: Verifying the installation
[code lang=bash]
# Verifying installation
$ docker-compose –version
[/code]


By aem4beginner

No comments:

Post a Comment

If you have any doubts or questions, please let us know.