WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
Showing only changes of commit 6792993ba6 - Show all commits

6
docker/update.sh Normal file
View file

@ -0,0 +1,6 @@
#!/bin/zsh
for dir in */; do
cd $dir
docker-compose pull && docker-compose down && docker-compose up -d
cd ..
done