diff --git a/Justfile b/Justfile index 599c157..5bdabd0 100644 --- a/Justfile +++ b/Justfile @@ -1,2 +1,6 @@ dev +command: - docker compose -f docker-compose.yml -f docker-compose.dev.yml {{command}} \ No newline at end of file + docker compose -f docker-compose.yml -f docker-compose.dev.yml {{command}} + +deploy build="": + git pull + docker compose up {{ if build != "" { "--build" } else { "" } }} --pull=always -d \ No newline at end of file