mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3de1827b21
This is to optimise build times at the sacrifice of disk space/clean up tasks.
8 lines
163 B
Bash
Executable File
8 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set +u
|
|
|
|
if [[ $BUILDKITE_AGENT_META_DATA_CLEANBUILD != "false" ]]; then
|
|
echo "--- :docker: Clean environment"
|
|
docker system prune -af --volumes
|
|
fi |