

3·
4 days agoI’m not familiar with that particular tool.
If it uses docker, the most common place for the docker images and overlays is /var/lib/docker. This contains ALL docker overlays and such.
Hope this helps.
https://stackoverflow.com/a/25978888 Provides a more thorough answer.
Docker compose files (and docker execs) use the following format
volumes: - <host_storage_path>:<vm_mount_path>
If the docker-compose has a
${VAR_NAME}:/data
, then it will replace it directly with the variable defined in the .env file in the same directory with the formatVAR_NAME=/path/on/host
And would mount the host’s
/path/on/host
to/data