Files
simple-labeler/Bakefile
2022-05-27 11:21:49 +03:00

16 lines
272 B
Plaintext

# 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
}