Skip to content

Latest commit

 

History

History
executable file
·
19 lines (13 loc) · 542 Bytes

use_it_inside_docker.md

File metadata and controls

executable file
·
19 lines (13 loc) · 542 Bytes

Use it inside docker (or any other container)

Add these steps inside any dockerfile:

ADD "https://raw.githubusercontent.com/yusuf-daglioglu/cc_scripts/master/release/cc_scripts.sh" "/this_path/is_inside_docker/cc_scripts.sh"

or if cc_scripts.sh file is being already downloaded on your local:

COPY "/this_path/is_inside/local_machine/cc_scripts.sh" "/this_path/is_inside_docker/cc_scripts.sh"

When you attach on docker and run this command:

source "/this_path/is_inside_docker/cc_scripts.sh"