Sign inSign up

visionect/visionect-server-v3-armhf

By visionect

Updated almost 5 years ago

Visionect Software Suite 3 public repository - ARM build

Image
0

10K+

visionect/visionect-server-v3-armhf repository overview

The Visionect Software Suite is the core of the Visionect Platform. It acts as a server for thin clients and hosts an entity (session) for each Visionect e-paper client device. The server converts regular web pages into graphical data and makes sure that e-paper client devices display the correct content at all times. Around that core functionality the server offers a host of features that enable you to deploy, control, manage and integrate the Visionect Platform in your solutions.

Read more at visionect.com and docs.visionect.com

This is a 32-bit ARM build of Visionect Server. If you want to run it on x86-64 use visionect/visionect-server-v3.

Installation

Here is the docker-compose.yml file that will start three containers: the Visionect Software Suite, redis and postgresql. The SQL database is stored under the pgdata volume:

version: "3"
services:
  vserver3:
    container_name: vss-master
    image: visionect/visionect-server-v3-armhf:latest
    privileged: true
    depends_on:
      - redis
    cap_add:
      - MKNOD
      - SYS_ADMIN
    devices:
      - "/dev/fuse:/dev/fuse"
    restart: always
    links:
      - "postgres_db:postgres"
      - "redis:redis"
    ports:
      - 8081:8081
      - 11113:11113
    environment:
      - DB2_1_PORT_5432_TCP_ADDR=postgres
      - DB2_1_PORT_5432_TCP_USER=visionect
      - DB2_1_PORT_5432_TCP_PASS=visionect
      - DB2_1_PORT_5432_TCP_DB=koala
      - VISIONECT_SERVER_MASTER_HOST
      - VISIONECT_SERVER_DEPLOYMENT_KEY
      - VISIONECT_SERVER_CERTIFICATES=/usr/local/share/ca-certificates
      - REDIS_ADDRESS=redis:6379
    volumes:
      - /dev/shm:/dev/shm
      - ./certs:/usr/local/share/ca-certificates
      - ./app:/app
  postgres_db:
    container_name: pdb
    image: postgres:latest
    restart: always
    ports: 
      - 5432:5432
    environment:
      - POSTGRES_USER=visionect
      - POSTGRES_DB=koala
      - POSTGRES_PASSWORD=visionect
      - PGPASSWORD=visionect
    volumes:
      - ./pgdata:/var/lib/postgresql/data
  redis:
    image: redis
    restart: always

Tag summary

Content type

Image

Digest

Size

439.6 MB

Last updated

almost 5 years ago

docker pull visionect/visionect-server-v3-armhf