mirror of
https://github.com/alemidev/scope-tui.git
synced 2024-11-14 18:59:19 +01:00
655598e807
* Added Dockerfile to build project * Added docker-compose.yml for easy container orchestration * Added helper shell script docker_start.sh to easily start and attach the container. * Added dockerignore file to avoid over-including files. * Minor update to README to include docker information.
15 lines
422 B
YAML
15 lines
422 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
scope_tui:
|
|
container_name: scope_tui
|
|
# command: ["--scatter", "pulse"] # Example of customizing options
|
|
image: scope_tui
|
|
build: .
|
|
stdin_open: true
|
|
tty: true
|
|
environment:
|
|
- PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native
|
|
volumes:
|
|
- ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native
|
|
- ~/.config/pulse/cookie:/.config/pulse/cookie
|