Is the docker distribution expected to have differ...
# community-help
r
Is the docker distribution expected to have different OS-es for the same version of TypeSense but different platforms? ARM64
Copy code
❯ docker run --name typesense-arm64 -ti --rm --platform=linux/arm64 --entrypoint bash typesense/typesense:0.23.1
Unable to find image 'typesense/typesense:0.23.1' locally
0.23.1: Pulling from typesense/typesense
Digest: sha256:0789b4b11c7219e6e7fce1b61e644ef4dd075286b77fe8b9112b8ec561fa4e72
Status: Downloaded newer image for typesense/typesense:0.23.1
root@d11c7c2827bf:/# cat /etc/issue
Ubuntu 20.04.4 LTS \n \l

root@d11c7c2827bf:/# uname -a
Linux d11c7c2827bf 5.10.104-linuxkit #1 SMP PREEMPT Thu Mar 17 17:05:54 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux
AMD64
Copy code
❯ docker run --name typesense-amd64 -ti --rm --platform=linux/amd64 --entrypoint bash typesense/typesense:0.23.1
root@50072b44d6f1:/# uname -a
Linux 50072b44d6f1 5.10.104-linuxkit #1 SMP PREEMPT Thu Mar 17 17:05:54 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
root@50072b44d6f1:/# cat /etc/issue
Ubuntu 16.04.7 LTS \n \l
It would appear that
main
may not be in sync with above, I was not able to find recent references for
20.04.4
under docker
k
Actually it's built from different base images. The ARM build had some problems with the older Linux so I used a newer build.
In future releases, we will sync both of them to operate from the same base image.
r
Ack. Do you plan to publish the more recent images also for AMD64?
k
The RC builds are already using Ubuntu 20.04, see the recent tags here: https://hub.docker.com/r/typesense/typesense/tags
r
I'll check them out! Thanks!
👍 1