This commit is contained in:
Dmitriy Kazimirov 2025-04-02 06:07:10 +00:00
parent e625342332
commit 83be2df651
2 changed files with 11 additions and 0 deletions

View file

@ -103,6 +103,12 @@ docker-compose logs -f api
docker-compose down && docker-compose up -d --build
```
```bash
docker-compose down && docker-compose up -d --force-recreate --build
```
docker-compose up --force-recreate --build
Logs (app)
```bash
docker logs booksearch_app -f

5
redeploy.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/bash
git reset --hard
git pull -v
docker-compose down
docker-compose up --force-recreate --build -d