Hi all
I created my first docker (based on one found in hub) but if i wan to ssh it i creceive an errore (the same error appers in the original docker image):
rpc error: code = 2 desc = oci runtime error: exec failed: container_linux.go:247: starting container process caused “process_linux.go:87: adding pid 22700 to cgroups caused "failed to write 22700 to cgroup.procs: write /sys/fs/cgroup/systemd/docker/54cce0e5155bfc766e8a33f4faf6c52911ae78bbecdf215835389e25d1a70003/cgroup.procs: no space left on device"”
can someone please support me?
below the docker file content
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y \
wget
RUN wget -q -O - https://apt.mopidy.com/mopidy.gpg | apt-key add -
RUN wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/jessie.list
RUN apt-get update
RUN apt-get install -y \
python-pip mopidy
RUN apt-get remove -y python-pyasn1
RUN pip install Mopidy-Scrobbler Mopidy-Moped Mopidy-GMusic Mopidy-Party Mopidy-Iris Mopidy-Mopify
COPY mopidy.conf /root/.config/mopidy_default.conf
COPY mopidy.sh /usr/local/bin/mopidy.sh
EXPOSE 6600 6680
ENTRYPOINT ["/usr/local/bin/mopidy.sh"]
Thank you in advance!