lossless1024 / StreaMonitor

Adult live stream downloader for advanced people. I could have chosen a better name.
GNU General Public License v3.0
172 stars 42 forks source link

Docker compose issue #127

Closed Acenl12 closed 7 months ago

Acenl12 commented 7 months ago
> [streamonitor 2/7] RUN   apt update &&   apt install -y ffmpeg &&   rm -rf /var/cache/apt/lists ;:
0.216
0.216 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
0.216
0.232 Err:1 http://deb.debian.org/debian
buster InRelease
0.232   Temporary failure resolving 'deb.debian.org'
0.232 Err:2 http://deb.debian.org/debian-security buster/updates InRelease
0.232   Temporary failure resolving 'deb.debian.org'
0.232 Err:3 http://deb.debian.org/debian
buster-updates InRelease
0.232   Temporary failure resolving 'deb.debian.org'
0.236 Reading package lists...
0.244 Building dependency tree...
0.244 Reading state information...
0.244 W: Failed to fetch http://deb.debian.org/debian/dists/buster/InRelease  Temporary failure resolving 'deb.debian.org'
0.244 W: Failed to fetch http://deb.debian.org/debian-security/dists/buster/updates/InRelease  Temporary failure resolving
'deb.debian.org'
0.244 W: Failed to fetch http://deb.debian.org/debian/dists/buster-updates/InRelease  Temporary failure resolving 'deb.debian.org'
0.245 W: Some index files failed to download. They have been ignored, or old ones
used instead.
0.245 All packages are up to date.
0.250
0.250 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
0.250
0.253 Reading package lists...
0.260 Building dependency tree...
0.260 Reading state information...
0.261 E: Unable to locate package ffmpeg
------
failed to solve: process "/bin/sh -c apt
update &&   apt install -y ffmpeg &&   rm -rf /var/cache/apt/lists ;" did not complete successfully: exit code: 100

OS version

PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"

Docker version Docker version 24.0.7, build afdd53b

DerBunteBall commented 7 months ago

This is not an issue of Docker or the build process in general.

Make sure your DNS is working in general.

Try to resolve the hostname (deb.debian.org) on Host with dig or host. Resolves normal here. Also check http://deb.debian.org/ which explains which records are relevant (aspecially the SRV record).

Acenl12 commented 7 months ago

This is not an issue of Docker or the build process in general.

Make sure your DNS is working in general.

Try to resolve the hostname (deb.debian.org) on Host with dig or host. Resolves normal here. Also check http://deb.debian.org/ which explains which records are relevant (aspecially the SRV record).

Thanks yeah my resolv.conf had ipv6 addresses, docker didn't liked that

DerBunteBall commented 7 months ago

Whups.... :-)

Docker is a bit tricky when it comes to IPv6. It's really not feature complete in this area.

Best Regards