ljc1976

updated

6 years ago

L

ljc1976

3 Posts

0

2691

March 11th, 2020 12:00

ESRS-DE Disk Space Requirement

Can some please let me know the path that the ESRS-DE installer checks for disk space?

I have 65GB free (64GB is the minimum requirement) on my lab box but when I try to install Docker Edition I get Failed: Not enough space.

 

Thanks in advance.

  • T.murph

    10 Posts

    2454

    0

    Posted March 12th, 2020 02:00

    Hi,

    the install script checks in /var/lib/docker.

    here's how it checks:

    DOCKER_STORAGE_PATH="/var/lib/docker"
    df -PBG $DOCKER_STORAGE_PATH | sort -rnk 3 | head -1 | awk '{print $4}' | cut -d'G' -f1
  • ljc1976

    3 Posts

    2429

    0

    Posted March 12th, 2020 07:00

    Great, many thanks!