Difference between revisions of "GDL/9.0/Deployment/Docker Ready Environment"
From Genesys Documentation
(Published) |
m (Text replacement - "\|Platform=([^\|]*)GenesysEngage-onpremises([\|]*)" to "|Platform=$1GenesysEngage-cloud$2") |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
|Standalone=Yes | |Standalone=Yes | ||
|DisplayName=Docker Ready Environment | |DisplayName=Docker Ready Environment | ||
− | |Platform= | + | |Platform=GenesysEngage-cloud |
|Context=Docker Setup Instructions | |Context=Docker Setup Instructions | ||
|Section={{Section | |Section={{Section | ||
|sectionHeading=Install Docker for CentOS | |sectionHeading=Install Docker for CentOS | ||
− | | | + | |Standalone=No |
− | | | + | |ComingSoon=No |
+ | |Status=No | ||
+ | |alignment=Vertical | ||
+ | |structuredtext=# Follow the instructions for installing Docker in CentOS as given [https://docs.docker.com/install/linux/docker-ce/centos/#set-up-the-repository here]. | ||
# Login as super user in CentOS using <code>sudo su</code> command. | # Login as super user in CentOS using <code>sudo su</code> command. | ||
# Type the following command to install required packages. | # Type the following command to install required packages. | ||
Line 22: | Line 25: | ||
}}{{Section | }}{{Section | ||
|sectionHeading=Install Docker Compose | |sectionHeading=Install Docker Compose | ||
− | | | + | |Standalone=No |
− | | | + | |ComingSoon=No |
+ | |Status=No | ||
+ | |alignment=Vertical | ||
+ | |structuredtext=Docker Compose enables a quick way of installing pre-configured Kakfa layers, and follow the commands to install Docker compose. | ||
# Install Docker Compose by typing the following command | # Install Docker Compose by typing the following command | ||
## <code>sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose</code> | ## <code>sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose</code> |
Latest revision as of 02:30, July 25, 2020
Docker Setup Instructions
Install Docker for CentOS
- Follow the instructions for installing Docker in CentOS as given here.
- Login as super user in CentOS using
sudo su
command. - Type the following command to install required packages.
sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
- Type the following command to download the Docker setup file.
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
- Type the following command to install the Docker software.
sudo yum install docker-ce
- Type the following commands to enable Docker softare.
sudo su
(Enable as a super user)systemctl enable docker
- Type the following command to start the Docker software after successful installation.
sudo systemctl start docker
Install Docker Compose
Docker Compose enables a quick way of installing pre-configured Kakfa layers, and follow the commands to install Docker compose.
- Install Docker Compose by typing the following command
sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
- Execute these commands in root directory. (Access root directory using command
cd /
)sudo chmod +x /usr/local/bin/docker-compose
- Execute the following command under
/usr/bin
of root foldersudo ln -s /usr/local/bin/docker-compose docker-compose
This Docker environment is ready for GDL deployment at the end of this step.
Comments or questions about this documentation? Contact us for support!