This commit is contained in:
2022-05-27 11:21:49 +03:00
commit ca80875372
14 changed files with 438 additions and 0 deletions

15
Bakefile Normal file
View File

@@ -0,0 +1,15 @@
# https://github.com/moonq/bake
if [[ ! -e .env ]]; then
cp -v example.env .env
fi
up() { # Run the service
docker-compose up --build -t 0 --force-recreate -d
docker-compose logs -f -t --tail=1000
}
down() { # Stop the service
docker-compose down -t 0
}