This directory contains the necessary files and instructions to build and run a Docker image for Kyubi.
To build and run the Docker image, you'll need the following:
- Access to a machine with Docker installed: Docker Installation Guide
- Docker Hub account (optional) for pushing and pulling Docker images
Experiment with Docker in Google Cloud Shell without needing to install Docker on your local machine. Follow these steps:
-
Navigate to Google Cloud Shell.
-
Use the provided terminal to run the below given Docker commands and experiment with Docker containers.
To build the Docker image locally, follow these steps:
-
Clone this repository:
git clone https://github.com/saami97/Kyubi.git
-
Build the Docker image using the provided Dockerfile:
docker build -t <any-name-you-wish> .
example:
docker build -t kyubi:1.0 .
Here the image is named as kyubi and is tagged as 1.0
To run the Docker image locally, use the following command:
docker run -it your-image-name:tag
Replace your-image-name
and tag
with the name of the Docker image and the tag that you specified during the build process respectively.
Adding -i
and -t
options will make it interactive.
example:
docker run -it kyubi:1.0
Here the image is named as kyubi and is tagged as 1.0