ARM Docker Image
-
Hello. Do you have a Dockerfile available or a ready image for ARM? I see that va-engine on docker hub is AMD only.
Thanks
Chris -
We currently have an official Docker image for x86_64 only. For ARM, there is a Raspberry Pi image.
We however internally build Arch Linux packages for 32-bit and 64-bit ARM. The plan is to publish these and other binary packages in AUR. We'll also provide official Docker images for ARM. They will be built out of the Arch packages and an Arch base image such as this.
The schedule is still a bit open. If everything goes well, the new binary packages will be included in the next release in May.
-
Looking forward to it!
-
Hi,
3.0-beta4 is out with an official ARM Docker image: https://hub.docker.com/r/visionappster/va-engine-linux-arm_32
-
Hi,
Merged the ARM repository to the main repo. Now both 32 and 64 bit ARM images can be found from https://hub.docker.com/r/visionappster/va-engine
-
@tomyri Thanks.
version: "2.4" services: portainer: container_name: portainer image: portainer/portainer restart: always networks: - l99_bridge ports: - "9000:9000" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - /var/run/docker.sock:/var/run/docker.sock - portainer_data:/data logging: driver: "json-file" options: max-file: "5" max-size: "10m" vaengine: container_name: vaengine image: visionappster/va-engine restart: always networks: - l99_bridge ports: - "2015:2015" privileged: true volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - va_packages:/opt/visionappster/packages - va_components:/opt/visionappster/components - va_licenses:/opt/visionappster/licenses logging: driver: "json-file" options: max-file: "5" max-size: "10m" volumes: portainer_data: va_packages: va_components: va_licenses: networks: l99_bridge: name: l99_bridge
-
A very excellent post. I am thankful for you. I have noticed a lot of approaches after attending your post.