Skip to content

prona-p4-learning-platform/cc-container

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProNA cc-container

This cc-container provides a containerized environment for running different cloud computing tools and utilities.

The following tools are included in the container:

# Build the container
docker build -t cc-container .

# Run the container locally
docker run -it --rm cc-container

# Run the container with your local kubeconfig as a volume
docker run -it --rm -d --name cc-container \
  -v ~/.kube/config:/home/p4/.kube/config:ro \
  cc-container

# Run the container with your local kubeconfig as environment variable (base64 encoded)
docker run -it --rm -d --name cc-container \
  -e KUBECONFIG_BASE64=$(cat ~/.kube/config | base64 -w 0) \
  cc-container

# SSH into the container
docker exec -it cc-container /bin/bash

About

Contains the basic cc-container

Topics

Resources

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •