... | @@ -24,3 +24,27 @@ systemctl daemon-reload |
... | @@ -24,3 +24,27 @@ systemctl daemon-reload |
|
systemctl start goemaxima
|
|
systemctl start goemaxima
|
|
systemctl status goemaxima
|
|
systemctl status goemaxima
|
|
```
|
|
```
|
|
|
|
|
|
|
|
### Troubleshooting no space left
|
|
|
|
|
|
|
|
If building image `./hsh-custom-build.sh` aborts cause by no space left you can try to fix this by the following hints.
|
|
|
|
|
|
|
|
```
|
|
|
|
# check space of order /var
|
|
|
|
df -h
|
|
|
|
|
|
|
|
# Delete packages in cache
|
|
|
|
apt-get clean
|
|
|
|
|
|
|
|
# remove unused images
|
|
|
|
docker image prune
|
|
|
|
|
|
|
|
# list images
|
|
|
|
docker image ls
|
|
|
|
|
|
|
|
# remove images
|
|
|
|
docker image rm <IMAGE>
|
|
|
|
|
|
|
|
# remove build cache
|
|
|
|
docker builder prune
|
|
|
|
`` |