mirror of
https://github.com/darkk/redsocks.git
synced 2025-08-27 04:05:31 +00:00
11 lines
203 B
Bash
Executable File
11 lines
203 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
(cd .. && make)
|
|
cp -a ../redsocks ./regw/redsocks
|
|
|
|
for img in *; do
|
|
if [ -d "$img" -a -f "$img/Dockerfile" ]; then
|
|
sudo docker build -t redsocks/"$img" ./"$img"/
|
|
fi
|
|
done
|