-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.qmd
More file actions
57 lines (39 loc) · 1.48 KB
/
scripts.qmd
File metadata and controls
57 lines (39 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Scripts
## Run all dockerized apps script based
The `all-in-one-app.sh` is a command line tool for all Pandora-Isomemo docker
applications.
### Features:
- List available Pandora Docker images and running Pandora containers
- Pulls Pandora Docker images
- Starts Pandora Docker containers
- Stops running Pandora Docker containers
### Requierments
The script requires the following software to be installed:
* [docker](https://docs.docker.com/)
* [Install Docker on Linux](https://docs.docker.com/desktop/install/linux-install/)
* [Install Docker on MacOs](https://docs.docker.com/desktop/install/mac-install/)
* [netstat](https://linux.die.net/man/8/netstat)
* Generally installed by default on most Linux distributions and on macOS
* Linux: `sudo apt update & sudo apt install net-tools`
* MacOS: `brew install net-tools`
### Usage
To use the script, follow these steps:
1. Download the [script](https://github.com/Pandora-IsoMemo/docs/blob/main/scripts/all-in-one-app.sh)
```bash
curl -O -L https://raw.githubusercontent.com/Pandora-IsoMemo/docs/refs/heads/main/scripts/all-in-one-app.sh
```
3. Make the script executable:
```bash
chmod +x all-in-one-app.sh
```
4. Run the script
```bash
./all-in-one-app.sh`
```
Use `sudo` if your user isn't in the Docker group.
::: {.callout-warning icon=false}
### Warning:
* **The script was tested on Linux**
* **It should run on MacOS**
* **Currently, there is no working solution for Windows**
:::