-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
954 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,31 @@ | ||
# Cloud Tools Docker Setup | ||
|
||
Run docker on-premisse: | ||
This repository contains the configuration for a Docker image designed to run on-premise environments. The image includes various cloud-related tools and utilities. | ||
|
||
Command to create the imagem: | ||
$ docker build -t cloud-tools . | ||
## Running the Docker Image On-Premise | ||
|
||
Command to run the containner: | ||
### Step 1: Build the Docker Image | ||
|
||
To create the Docker image locally, use the following command: | ||
|
||
```bash | ||
docker build -t cloud-tools . | ||
``` | ||
|
||
### Step 2: Run the Docker Container | ||
|
||
After building the image, you can run the container interactively using: | ||
|
||
```bash | ||
docker run -it cloud-tools | ||
``` | ||
|
||
### Additional Information | ||
|
||
- This image is also **published on Docker Hub** for easier access and distribution. | ||
- All updates to the image are **automatically synced** to Docker Hub via **GitHub Actions**. The workflow for this automation is located in: | ||
|
||
```bash | ||
.github/workflows/docker-build.yml | ||
``` | ||
|
||
. |
Oops, something went wrong.