Community discussions

MikroTik App
 
craigbruenderman
just joined
Topic Author
Posts: 5
Joined: Sat Mar 09, 2024 6:39 am

Container won't extract

Mon Mar 17, 2025 4:48 am

I'm playing with containers on HAP AX3 ROS 7.18.2. I was able to get a freeradius container running as shown, but I've not been able to get Alpine:latest, or a custom Alpine or Ubuntu image working. They all get stuck extracting. The custom ones I built from very simple Dockerfiles, and used buildx like so before SCPing up the image.
docker buildx build --platform=linux/arm64 -t ubuntu .
docker save afe5ec7ce735 > ubuntu.tar
usb2 is where I'm pointing them, and it's a 32GB Ext4 filesystem with space.
 0 name="91988431-9502-4b20-ab9a-37cc0a724634" repo="registry-1.docker.io/freeradius/freeradius-dev:armv7-v3.2.x" os="linux" arch="arm" interface=veth1 cmd="-X"
   root-dir=usb2/freeradius mounts="" workdir="/" logging=yes status=running

 1 name="dcd4187e-0222-44ad-b23c-c13291692dc4" repo="" os="" arch="" interface=veth2 root-dir=usb2/ubuntu mounts="" hostname="alpine" logging=yes status=extracting
Any ideas why extracting never finishes? It untar's okay when I do it from the build machine (Mac M1).
 
craigbruenderman
just joined
Topic Author
Posts: 5
Joined: Sat Mar 09, 2024 6:39 am

Re: Container won't extract

Mon Mar 17, 2025 3:59 pm

Got a fix from Discord

https://tangentsoft.com/mikrotik/wiki?n ... compliance
skopeo copy docker-archive:broken.tar docker-archive:working.tar
 
fctech2490
just joined
Posts: 7
Joined: Wed Feb 05, 2025 7:39 pm

Re: Container won't extract

Mon Mar 17, 2025 5:43 pm

Hi,
You can download the Alpine container directly from registry-1.docker.io, but you need to use the following format:

<namespace>/<repository>:<tag>

For containers that do not have a namespace, you can use “library” as the namespace.
For example, to get Alpine, use:

library/alpine:latest