this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #2658 from saltykheera/remove_volume-fr

Add new make target to remove docker volumes along with containers

authored by

Vignesh Hari and committed by
GitHub
d24b016c 3b903cff

+13
+3
Makefile
··· 28 28 down: 29 29 docker compose -f docker-compose.yaml -f $(docker_config_file) down 30 30 31 + teardown: 32 + docker compose -f docker-compose.yaml -f $(docker_config_file) down -v 33 + 31 34 load-dummy-data: 32 35 docker compose exec backend bash -c "python manage.py load_dummy_data" 33 36
+10
README.md
··· 59 59 ```bash 60 60 make load-dummy-data 61 61 ``` 62 + Stops and removes the containers without affecting the volumes: 63 + 64 + ```bash 65 + make down 66 + ``` 67 + Stops and removes the containers and their volumes: 68 + 69 + ```bash 70 + make teardown 71 + ``` 62 72 63 73 #### Docker 64 74