mirror of
https://github.com/alemidev/scope-tui.git
synced 2024-11-15 03:09:20 +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.
7 lines
78 B
Bash
Executable file
7 lines
78 B
Bash
Executable file
#!/bin/sh
|
|
|
|
docker compose up -d
|
|
|
|
docker attach scope_tui
|
|
|
|
docker compose down
|