Hello and good morning/afternoon or night, this is someone who is just starting out in Docker, I have a laptop with the following components:
*Linux version 6.1.55-antix.1-amd64-smp (anticap@antix23) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) Use a markdown second level header # 1 SMP PREEMPT_DYNAMIC Tue Sep 26 22:14:10 EEST 2023
*Processor: Intel Atom N2600
*Memory: 2 GB DDR3 memory
*Video card: Intel Cedarview
*Hard drive: Toshiba MQ01ABF032 320 GB
*Network card: RealTek Semiconductor RTL8101/2/3 Family Fast Ethernet NIC
I want to compile Aseprite from its source code since I can’t use Steam on my laptop and I got frustrated trying to do it using the steps on the official Aseprite git-hub website and searching the internet I found a Docker image from the following website: GitHub - nilsve/docker-aseprite-linux: Docker container for easily building Aseprite for linux, when I downloaded the file I used the following commands:
1°I downloaded Docker from Sinaptyc, its version 1.5-2 and also Docker-compose 1.29.2-3 also from Synaptic
2°sudo apt install -y libdeflate0 libdeflate-dev
3°git clone GitHub - nilsve/docker-aseprite-linux: Docker container for easily building Aseprite for linux
4°cd docker-aseprite-linux
5°docker-compose build
6°docker-compose up but in this last step I receive the error:
Creating network “docker-aseprite-linux-12_default” with the default driver
Creating docker-aseprite-linux-12_installer_1 … done
Attaching to docker-aseprite-linux-12_installer_1
installer_1 | Download and compile Skia & other dependencies
installer_1 | Cloning into ‘depot_tools’…
installer_1 | error: RPC failed; curl 56 Recv failure: Connection timed out
installer_1 | error: 64813 bytes of body are still expected
installer_1 | fetch-pack: unexpected disconnect while reading sideband packet
installer_1 | fatal: early EOF
installer_1 | fatal: fetch-pack: invalid index-pack output
docker-aseprite-linux-12_installer_1 exited with code 128
Searching the internet I found that certain users solved this by running git config --global http.postBuffer 1048576000 and git config --global http.version HTTP/1.1 but when I run docker-compose again I receive this:
Starting docker-aseprite-linux-12_installer_1 … done
Attaching to docker-aseprite-linux-12_installer_1
installer_1 | Download and compile Skia & other dependencies
installer_1 | Cloning into ‘depot_tools’…
installer_1 | error: RPC failed; curl 56 Recv failure: No route to host
installer_1 | error: 868 bytes of body are still expected
installer_1 | fetch-pack: unexpected disconnect while reading sideband packet
installer_1 | fatal: early EOF
installer_1 | fatal: fetch-pack: invalid index-pack output
docker-aseprite-linux-12_installer_1 exited with code 128
My internet connection is stable and looking at the Docker configuration with docker-compose config or docker-compose ps I do not receive errors of any kind, I appreciate any help and please forgive my ignorance.