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.
|
||||
|
||||
- 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
|
||||
|
||||
|
|
|
@ -8,17 +8,15 @@ services:
|
|||
|
||||
blah2:
|
||||
restart: always
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
build: .
|
||||
image: blah2
|
||||
depends_on:
|
||||
- blah2_api
|
||||
volumes:
|
||||
- ./config:/blah2/config
|
||||
- /opt/blah2/save:/blah2/save
|
||||
- /dev/shm:/dev/shm:z
|
||||
- /dev/usb:/dev/usb
|
||||
- /dev/shm:/dev/shm:rw
|
||||
- /dev/usb:/dev/usb:rw
|
||||
network_mode: host
|
||||
privileged: true
|
||||
command: >
|
||||
|
|
Loading…
Reference in a new issue