Need New Parser for iTriangle - Commabased data #91
Closed
airfihotspots
started this conversation in
Ideas
Replies: 3 comments 27 replies
-
Do you have the full protocol specs? |
Beta Was this translation helpful? Give feedback.
25 replies
-
I am running using docker
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Is it the right way?
services:
gpstracker-mysql:
image: mysql:8.0
container_name: gpstracker-mysql
restart: unless-stopped
volumes:
- ./../storage/docker/db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_USER=gpstracker
- MYSQL_PASSWORD=gpstracker
- MYSQL_DATABASE=gpstracker
command:
- --character-set-server=utf8
- --collation-server=utf8_unicode_ci
networks:
- gpstracker-network
healthcheck:
test: mysqladmin ping -h localhost --password=root
interval: 15s
retries: 15
gpstracker-redis:
image: redis:7.0
container_name: gpstracker-redis
restart: unless-stopped
networks:
- gpstracker-network
healthcheck:
test: redis-cli ping
interval: 5s
retries: 15
gpstracker-app:
container_name: gpstracker-app
restart: unless-stopped
depends_on:
gpstracker-mysql:
condition: service_healthy
gpstracker-redis:
condition: service_healthy
volumes:
- ./../storage:/app/storage
build:
context: ..
dockerfile: ./docker/Dockerfile
ports:
- "8080:80"
- "8091:8091"
expose:
- "8080"
- "8091"
networks:
- gpstracker-network
tty: true
gpstracker-app2:
container_name: gpstracker-app2
restart: unless-stopped
depends_on:
gpstracker-mysql:
condition: service_healthy
gpstracker-redis:
condition: service_healthy
volumes:
- ./../storage:/app/storage
build:
context: ..
dockerfile: ./docker/Dockerfile
ports:
- "8081:80"
- "8092:8091"
expose:
- "8081"
- "8092"
networks:
- gpstracker-network
tty: true
networks:
gpstracker-network:
name: gpstracker-network
driver: bridge
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello Buddy,
We are using Indian company based tracking devices and that data parsing is bit different and very simple , I am attaching the log file for your understanding, please add this protocol in the application, Thanks in advance
itriangle.json
Parsed data.
parsed_data.json
Beta Was this translation helpful? Give feedback.
All reactions