-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker_build_notes.txt
42 lines (27 loc) · 1.04 KB
/
docker_build_notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
docker run --name ubuntu_bash --network host --rm -i -t ubuntu bash
apt-get install software-properties-common
Add these lines before running apt-add-repository command
Timezone issue:
# ARG DEBIAN_FRONTEND=noninteractive
OR
ENV TZ=Europe/Minsk
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt update && apt instal....
RUN apt-get update && \
apt-get install -y software-properties-common && \
rm -rf /var/lib/apt/lists/*
# https://wiki.gnuradio.org/index.php/InstallingGR#Ubuntu_PPA_Installation
# add-apt-repository ppa:gnuradio/gnuradio-releases
add-apt-repository -y ppa:gnuradio/gnuradio-releases-3.8
apt-get update && apt install -y nano gnuradio gr-osmosdr
# docker run --name ubuntu_bash --network host --rm -i -t robotastic/gnuradio bash
https://github.com/gnuradio/pybombs
https://github.com/robotastic/docker-gnuradio
pybombs install gr-osmosdr
============
source ~/prefix-3.8/setup_env.sh
1) nohup ./record_decode_433.py &
disown
2)
nohup python3 ./miltel_grc_server_tlv.py &
disown