kycnot.me/Justfile

13 lines
451 B
Makefile
Raw Normal View History

default: deploy
2024-02-18 11:16:56 -05:00
dev +command:
2024-02-19 03:45:40 -05:00
docker compose -f docker-compose.yml -f docker-compose.dev.yml {{command}}
deploy build="":
git pull
2024-03-04 15:19:02 -05:00
# Use shell scripting for conditional logic
BUILD_OPTION="{{ if build != "" { "--build" } else { "" } }}"
docker compose up $BUILD_OPTION --pull=always -d
# Use shell scripting for conditional logic
if [ -z "{{ build }}" ]; then docker compose restart website; fi
2024-02-19 13:35:11 -05:00
docker system prune -f