prepare separate images based on the used sdr device

This commit is contained in:
Jakob Ketterl
2019-01-21 17:02:58 +00:00
parent 896fd0c178
commit a60521420b
10 changed files with 20 additions and 4 deletions

View File

@ -0,0 +1,13 @@
FROM raspbian/stretch
ADD docker/scripts/install-dependencies.sh /
RUN /install-dependencies.sh
ADD . /openwebrx
WORKDIR /openwebrx
VOLUME /config
ENTRYPOINT [ "/openwebrx/docker/scripts/run.sh" ]
EXPOSE 8073

View File

@ -0,0 +1,5 @@
FROM openwebrx-base
ADD docker/scripts/install-dependencies-rtlsdr.sh /
RUN /install-dependencies-rtlsdr.sh

View File

@ -0,0 +1,5 @@
FROM openwebrx-base
ADD docker/scripts/install-dependencies-sdrplay.sh /
RUN /install-dependencies-sdrplay.sh

View File

@ -0,0 +1,2 @@
#!/bin/sh

View File

@ -0,0 +1,2 @@
#!/bin/bash