Skip to content
Snippets Groups Projects
Verified Commit a0792435 authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[MISC] Auto-create dumb secret file for testing

parent 5917ffba
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,11 @@ for f in $(grep -l -r ".picasoft.net" .); do
sed -i "s/.picasoft.net/.test.picasoft.net/g" ${f}
done
echo -e "\n==== Create dumb secret files ===="
for f in *.secrets.example; do
mv -- "$f" "$(basename -- "$f" .secrets.example).secrets"
done
echo -e "\n==== Remove and re-create named external volumes ===="
for v in $(docker-compose config --volumes); do
# Don't fail if volume does not exists
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment