mirror of
https://github.com/30hours/blah2.git
synced 2024-11-08 12:25:42 +00:00
Fix Docker > 25.0.0 as per #6 (add rw on mount)
This commit is contained in:
parent
53b311a9df
commit
601dec1ffc
2 changed files with 3 additions and 6 deletions
|
@ -75,7 +75,6 @@ Join the [Discord](https://discord.gg/ewNQbeK5Zn) chat for sharing results and s
|
||||||
Pull requests are welcome - especially for adding support for a new SDR.
|
Pull requests are welcome - especially for adding support for a new SDR.
|
||||||
|
|
||||||
- Currently have an issue where the USRP B210 is timing out after 5-10 mins and crashes the code. Convinced it's an issue with my usage of the API - contact me for more info.
|
- Currently have an issue where the USRP B210 is timing out after 5-10 mins and crashes the code. Convinced it's an issue with my usage of the API - contact me for more info.
|
||||||
- A bug exists for Docker versions >= 25.0.0 using the RspDuo due to a shared memory issue, please downgrade for the time being.
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -8,17 +8,15 @@ services:
|
||||||
|
|
||||||
blah2:
|
blah2:
|
||||||
restart: always
|
restart: always
|
||||||
build:
|
build: .
|
||||||
context: .
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
image: blah2
|
image: blah2
|
||||||
depends_on:
|
depends_on:
|
||||||
- blah2_api
|
- blah2_api
|
||||||
volumes:
|
volumes:
|
||||||
- ./config:/blah2/config
|
- ./config:/blah2/config
|
||||||
- /opt/blah2/save:/blah2/save
|
- /opt/blah2/save:/blah2/save
|
||||||
- /dev/shm:/dev/shm:z
|
- /dev/shm:/dev/shm:rw
|
||||||
- /dev/usb:/dev/usb
|
- /dev/usb:/dev/usb:rw
|
||||||
network_mode: host
|
network_mode: host
|
||||||
privileged: true
|
privileged: true
|
||||||
command: >
|
command: >
|
||||||
|
|
Loading…
Reference in a new issue