software_installation
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| software_installation [2025/12/27 22:40] – created robyn | software_installation [2025/12/29 19:55] (current) – robyn | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| ==== Software installation ==== | ==== Software installation ==== | ||
| + | == Presumptions: | ||
| + | * You have installed Docker and maybe Portainer. The host machine has a fixed IP (Static or DHCP reservation). Note this IP address down \\ \\ | ||
| + | * You have a working Ollama installation and a suitable LLM pulled. From the CLI (command line interface) in a terminal you may have typed **ollama run llama2-uncensored** which will automatically pull the model and run it. This as well will require a fixed IP. \\ \\ | ||
| + | |||
| + | == Installation: | ||
| + | |||
| + | * In your home directory open your Editor of choice, I use nano in linux, NetworkChuck tells me it is the best, BTW to copy code in the block just click on it. <code bash> | ||
| + | export PUID=$(id -u) | ||
| + | export PGID=$(id -g) | ||
| + | </ | ||
| + | * CNTL X, Y, < | ||
| + | |||
| + | * From your home directory, type '' | ||
| + | * You should now be in the directory '' | ||
| + | * Next type '' | ||
| + | * Then with your favourite editor, on linux I use Nano, create to edit a file called " | ||
| + | * Cut and Paste the below: <code yaml> services: | ||
| + | corrade: | ||
| + | image: wizardrysteamworks/ | ||
| + | container_name: | ||
| + | ports: | ||
| + | - " | ||
| + | - " | ||
| + | volumes: | ||
| + | - ./ | ||
| + | environment: | ||
| + | - TZ=US/ | ||
| + | networks: | ||
| + | - anne-net | ||
| + | restart: unless-stopped | ||
| + | |||
| + | avadroid: | ||
| + | image: vk6xre/ | ||
| + | container_name: | ||
| + | user: " | ||
| + | ports: | ||
| + | - " | ||
| + | volumes: | ||
| + | - ./ | ||
| + | environment: | ||
| + | - TZ= US/Pacific | ||
| + | networks: | ||
| + | - anne-net | ||
| + | depends_on: | ||
| + | - corrade | ||
| + | restart: unless-stopped | ||
| + | |||
| + | networks: | ||
| + | anne-net: | ||
| + | driver: bridge | ||
| + | </ | ||
| + | |||
| + | * We have to edit this file to suit your system. \\ | ||
| + | * First: Where you see anne replace anne with the name of your AvaDroid, Example if your Avadroid is named " | ||
| + | * Next: Port redirections. in <code yaml> ports: | ||
| + | - " | ||
| + | - " | ||
| + | </ | ||
| + | - " | ||
| + | * The number to the left is the " | ||
| + | * Once you are happy with the compose.yml edits, in nano at least, CNTL X, Y, < | ||
| + | * Next, to create the containers. | ||
| + | * Copy and paste '' | ||
| + | * At this point the AvaDroid container is failing as Corrade is not configured. You can stop the AvaDroid container with '' | ||
| + | |||
| + | Next Step, Configure [[corrade_configure|Corrade]]. | ||
software_installation.1766904001.txt.gz · Last modified: by robyn
