8 lines
123 B
Bash
8 lines
123 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Make scripts executable
|
||
|
chmod +x run-docker.sh
|
||
|
chmod +x docker-start.sh
|
||
|
|
||
|
echo "Scripts are now executable!"
|