Navigation

    VisionAppster.com

    VisionAppster Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    ARM Docker Image

    Raspberry Pi
    4
    7
    541
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C
      cmisztur last edited by

      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

      Topi 1 Reply Last reply Reply Quote 0
      • Topi
        Topi @cmisztur last edited by

        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.

        1 Reply Last reply Reply Quote 1
        • C
          cmisztur last edited by

          Looking forward to it!

          1 Reply Last reply Reply Quote 0
          • Topi
            Topi last edited by

            Hi,

            3.0-beta4 is out with an official ARM Docker image: https://hub.docker.com/r/visionappster/va-engine-linux-arm_32

            1 Reply Last reply Reply Quote 0
            • tomyri
              tomyri last edited by

              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

              C 1 Reply Last reply Reply Quote 0
              • C
                cmisztur @tomyri last edited by

                @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
                
                
                
                
                1 Reply Last reply Reply Quote 0
                • ?
                  A Former User last edited by

                  A very excellent post. I am thankful for you. I have noticed a lot of approaches after attending your post.

                  1 Reply Last reply Reply Quote 0
                  • First post
                    Last post
                  Forum Terms of Use and Privacy Policy