Skip to content
Snippets Groups Projects
Commit 27d1a737 authored by iaibrys's avatar iaibrys
Browse files

Move scripts to ./scripts.

parent 72c9397c
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Remove unecessary files in vol.
export VOL=../../vol
rm -rf $VOL/website/vendor/*
exts=( js css less woff2 eot ttf svg woff png )
for e in "${exts[@]}"
do
echo $e
rm $VOL/website/assets/*.$e
rm $VOL/website/assets/*.$e.gz
done
rm -rf $VOL/quiz-db/*
rm -rf $VOL/sharelatex-db/*
#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment