initial commit
Signed-off-by: ale <ale@manalejandro.com>
This commit is contained in:
commit
08d294455c
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
folder/
|
5
Dockerfile
Normal file
5
Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM openvino/ubuntu22_dev:latest
|
||||
USER root
|
||||
RUN apt update && apt install -y audacity pulseaudio && apt clean
|
||||
RUN adduser openvino audio
|
||||
USER openvino
|
21
README.md
Normal file
21
README.md
Normal file
@ -0,0 +1,21 @@
|
||||
# docker-audacity
|
||||
|
||||
### Simple docker container with `audacity` and `openvino` AI graphic card Intel support.
|
||||
|
||||
![screenshot](screenshot.png)
|
||||
|
||||
## Build
|
||||
|
||||
docker compose build
|
||||
|
||||
## Start
|
||||
|
||||
docker compose up
|
||||
|
||||
## Stop
|
||||
|
||||
docker compose down
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
19
compose.yml
Normal file
19
compose.yml
Normal file
@ -0,0 +1,19 @@
|
||||
services:
|
||||
audacity:
|
||||
build: .
|
||||
image: audacity
|
||||
container_name: audacity
|
||||
entrypoint:
|
||||
- audacity
|
||||
environment:
|
||||
- DISPLAY=$DISPLAY
|
||||
- PULSE_SERVER=unix:/run/user/1000/pulse/native
|
||||
devices:
|
||||
- /dev/dri
|
||||
- /dev/snd
|
||||
volumes:
|
||||
- $HOME/.Xauthority:/home/openvino/.Xauthority:rw
|
||||
- /tmp/.X11-unix:/tmp/.X11-unix
|
||||
- /run/user/1000/pulse/native:/run/user/1000/pulse/native
|
||||
- ./folder:/home/openvino/folder:rw
|
||||
network_mode: none
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 349 KiB |
Loading…
Reference in New Issue
Block a user