theant1979
(Anthony Van den Berghe)
1
Hello,
i am trying to install visionect server on my docker instance (with portainer)
https://hub.docker.com/r/visionect/visionect-server-v3/
After install when i try to connect to the port 8081 i get a “this site can’t be reached” error.
(xxx.xxx.x.xxx refused to connect)
How do i troubleshoot this?
telnet gives me on port 8081 a failed
on the postgres 6989 it connects
deanayalon
(Dean Ayalon)
2
How are you setting up the containers?
theant1979
(Anthony Van den Berghe)
3
I did it with the stack composer in portainer
version: "3"
services:
vserver3:
container_name: vss
image: visionect/visionect-server-v3
privileged: true
ulimits:
core: 0
depends_on:
- redis
- postgres_db
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
- REDIS_ADDRESS=redis:6379
- VISIONECT_SERVER_ADDRESS=localhost
volumes:
- /dev/shm:/dev/shm
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