initial commit

Signed-off-by: ale <ale@manalejandro.com>
This commit is contained in:
ale 2024-11-24 15:54:15 +01:00
commit 08d294455c
Signed by: ale
GPG Key ID: 244A9C4DAB1C0C81
5 changed files with 46 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
folder/

5
Dockerfile Normal file
View 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
View 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
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 KiB