Skip to content

datagnss/rtkrcv-1

 
 

Repository files navigation

rtkrcv

Get the latest image: docker pull rinex20/rtkrcv:latest

1. How to run?

a. docker cli

docker run -d \
   --restart=unless-stopped \
   --name=rtk \
   --network=bridge \ 
   -p 8001:2101 -p 8002-8005:8002-8005 \
   -p 8077-8078:8077-8078 \ 
   -v $PWD/conf:/data/rtk \
   -e ntripcaster=1 -e AUTORUN=1 \
   rinex20/rtkrcv:latest

b. docker-compose

version: '3'
services:
  rtk:
    image: rinex20/rtkrcv:latest #private
    volumes:
      - $PWD/conf:/data/rtk
    restart: unless-stopped
    network_mode: bridge
    environment:
      - ntripcaster=1
      - AUTORUN=1
    ports:
      - 8077-8078:8077-8078
      - 8002-8005:8002-8005
      - 8001:2010
    container_name: rtk

2. Configure

3. Others

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Batchfile 34.7%
  • Dockerfile 33.8%
  • Shell 31.5%