Collection of Bash Scripts that have multiple purposes, as the following:
- /bashscripts_github-F/Find-Scripts: Collection of Scripts using the Command Find
- Locally from Cloning
- Docker Container
- Clone Project From Repo
- Execute Shell Script from Local Directory
- Clone Project From Repo
- Build Docker Image:
docker build -t bashscripts_github:latest .
- Run Docker Container:
docker run --rm -d -it bashscripts_github:latest
- Check Docker Container is running and get the ContainerId for bashscripts_github:latest:
docker ps
- Execute Bash inside of Docker Container:
docker exec -it <container_id> bash
- Execute Shell Script from Docker Container