YAML 55
Wtf By pronto on 30th January 2024 11:25:07 PM
  1. TZ="America/New_York"
  2. FEEDER_ID=
  3. RESTART=always
  4. adsbx_uuid=
  5. SDR_TYPE=rtlsdr
  6. GEO_LAT=
  7. GEO_LON=
  8. GEO_ALT=50m
  9. BEASTHOST=Shirley_readsb
  10.  
  11.  
  12.  
  13. version: "3.9"
  14. networks:
  15.     DrRumack:
  16.         external: true
  17. volumes:
  18.   readsbpb_rrd:
  19.   readsbpb_autogain:
  20. services:
  21.     Shirley_readsb:
  22.         image: ghcr.io/sdr-enthusiasts/docker-readsb-protobuf:latest
  23.         tty: true
  24.         container_name: Shirley_readsb
  25.         hostname: Shirley_readsb
  26.         restart: always
  27.         privileged: true
  28.         devices:
  29.            - /dev/swradio0:/dev/swradio0
  30.         ports:
  31.            - 8080:8080
  32.             - 30005:30005
  33.         volumes:
  34.            - readsbpb_rrd:/run/collectd
  35.             - readsbpb_autogain:/run/autogain
  36.             - /proc/diskstats:/proc/diskstats:ro
  37.         environment:
  38.            - TZ=${TZ}
  39.             - READSB_DEVICE_TYPE=${SDR_TYPE}
  40.             - READSB_FIX=true
  41.             - READSB_GAIN=autogain
  42.             - READSB_LAT=${GEO_LAT}
  43.             - READSB_LON=${GEO_LON}
  44.             - READSB_MODEAC=true
  45.             - READSB_RX_LOCATION_ACCURACY=2
  46.             - READSB_STATS_RANGE=true
  47.             - READSB_NET_ENABLE=true
  48.             - READSB_NET_ENABLE=true
  49.            
  50.     Shirley_adsbexchange:
  51.         image: ghcr.io/sdr-enthusiasts/docker-adsbexchange:latest
  52.         tty: true
  53.         container_name: Shirley_adsbx
  54.         restart: ${RESTART}
  55.         ports:
  56.            - 30105:30105
  57.         environment:
  58.            - BEASTHOST=${BEASTHOST}
  59.             - TZ=${TZ}
  60.             - LAT=${GEO_LAT}
  61.             - LONG=${GEO_LON}
  62.             - ALT=${GEO_ALT}
  63.             - SITENAME=CaptainOveur
  64.             - UUID=${adsbx_uuid}
  65.         tmpfs:
  66.            - /run:rw,nosuid,nodev,exec,relatime,size=64M,uid=1000,gid=1000

ifconfig paste is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.