#docker (2023-03)
All things docker
Archive: https://archive.sweetops.com/docker/
2023-03-03
i’m looking at migration from Azure Container Instances to Azure Container Apps of a some services which are uptime-sensitive. does anyone have experience with ACA and can share some impressions?
2023-03-25
hi All,
I am trying to install some packages on centos:8 docker base, but unfortunately I am unable to install any packages on the OS, couldn’t update the base image, can someone help what’s the issue here? how to install a package on centos.
centos 8 is dead. need to use centos 8 stream now. the stream images are hosted on quay.io, not dockerhub https://quay.io/repository/centos/centos?tab=tags&tag=stream8
Quay is the best place to build, store, and distribute your containers. Public repositories are always free.
thanks @loren , let me check the same and update..
or: https://forketyfork.medium.com/centos-8-no-urls-in-mirrorlist-error-3f87c3466faa
FROM centos:8
RUN sed -i -e "s|mirrorlist=|#mirrorlist=|g" /etc/yum.repos.d/CentOS-* && \
sed -i -e "s|#baseurl=baseurl=<http://vault.centos.org|g" /etc/yum.repos.d/CentOS-*
RUN yum update -y
If you use CentOS 8, you might have noticed that starting from January 31, 2022, installing packges with yum no longer works with an error…