[SOLVED] Docker Containers can not be stopped or removed – permission denied Error

Issue Issue: Can not stop docker containers, whenever I try to stop containers I get the following Error message, ERROR: for yattyadocker_web_1 cannot stop container: 1f04148910c5bac38983e6beb3f6da4c8be3f46ceeccdc8d7de0da9d2d76edd8: Cannot kill container 1f04148910c5bac38983e6beb3f6da4c8be3f46ceeccdc8d7de0da9d2d76edd8: rpc error: code = PermissionDenied desc = permission denied OS

Continue reading

[SOLVED] Python script not executed with docker compose

Issue I have got the following Docker file FROM jupyter/scipy-notebook COPY . ./work RUN pip install -r ./work/requirements.txt WORKDIR /work CMD ["python", "./work/append_dependencies.py"] and the following docker-compose.yml version: ‘3.7’ networks: george: services: jupyter: build: . image: jupyter/datascience-notebook:r-4.0.3 environment: – JUPYTER_TOKEN=password

Continue reading