The docker-compose reports:
volumes:
# - './src:/usr/src/geonode' # Uncomment for local development
but if the line is uncommented, when launching the services you get:
Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: exec: "/usr/src/geonode/entrypoint.sh": stat /usr/src/geonode/entrypoint.sh: no such file or directory
Fact is that Dockerfile copies
while the mount mounts ./src, so the paths mismatch,
Specifications
No backport needed since the issue is on master only.
The docker-compose reports:
but if the line is uncommented, when launching the services you get:
Fact is that
DockerfilecopiesCOPY . /usr/src/geonode/while the mount mounts
./src, so the paths mismatch,Specifications
No backport needed since the issue is on master only.