[tag 2.0.3] readlink /var/lib/docker/overlay2: invalid argument
LeNouveau opened this issue · comments
Hi,
When using the image 2.0.3, I have the following error :
PS C:\Users\Toto\warp10> docker-compose up -d
Creating network "warp10_default" with the default driver
ERROR: readlink /var/lib/docker/overlay2: invalid argument
My docker-compose.yml :
version: "2"
services:
warp10:
image: warp10io/warp10:2.0.3
ports:
- "8080:8080"
- "8081:8081"
volumes:
- "warp10_data:/data"
volumes:
warp10_data:
The image tag :
> docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
warp10io/warp10 2.0.3 90c8ac080ab9 30 hours ago 239MB
Could the image be corrupted ?
I can't try to build myself. Switching to tag 2.0.2 "fixes" the problem.
Regards,
LeNouveau
Hi, we will investigate, but the docker image is running perfectly on linux OS. Maybe correlated with docker-compose or windows.
Also works well with docker-compose :
version: '2'
services:
warp10:
image: 'warp10io/warp10:2.0.3'
ports:
- '8080:8080'
- '8081:8081'
volumes:
- '/opt/warp10:/data'
It seems that your docker-compose-yml is missing something near :
volumes:
- "warp10_data:/data"
volumes:
warp10_data: ??????? <------
I'm on Windows 10, Docker at version 18.06.1-ce, build e68fc7a.
File docker-compose.yml
works well with tag 2.0.2.
Ok, I did a try. Delete the image, pull it again.
Seems to work, even with docker-compose.
Probably something wrong with my first pull.
So, it's solved and not even related to your image build. Sorry.
Nice :)
No problem.