eolab:ioa:offline_farmos:installing_farmos
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
eolab:ioa:offline_farmos:installing_farmos [2022/09/28 16:35] – created jan001 | eolab:ioa:offline_farmos:installing_farmos [2023/01/05 14:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Installing FarmOS ====== | ====== Installing FarmOS ====== | ||
- | --- //[[jan.sonntag@hsrw.org|Jan Sonntag]] 2022/09/28 16:34// | + | " |
+ | So I have one good news and one bad news for you. Fortunately, | ||
+ | |||
+ | First, we will download the software from GitHub ([[https:// | ||
+ | |||
+ | <cli> | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | </ | ||
+ | |||
+ | We now have everything set to start our FarmOS instance. | ||
+ | Now we need to configure how we want to run our instance. Because we also need a separate database for running FarmOS, we will use Docker Compose. With Docker Compose we can define all our wanted services in one file and be able to start and stop them easily. | ||
+ | |||
+ | <cli> | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | pi@ioa-webserver: | ||
+ | </ | ||
+ | |||
+ | With nano you can now create and edit the configuration file. Nano is a text-editor. | ||
+ | |||
+ | <file yml docker-compose.yml> | ||
+ | version: ' | ||
+ | services: | ||
+ | db: | ||
+ | image: postgres:12 | ||
+ | volumes: | ||
+ | - ' | ||
+ | ports: | ||
+ | - ' | ||
+ | environment: | ||
+ | POSTGRES_USER: | ||
+ | POSTGRES_PASSWORD: | ||
+ | POSTGRES_DB: | ||
+ | |||
+ | www: | ||
+ | depends_on: | ||
+ | - db | ||
+ | image: farmos: | ||
+ | volumes: | ||
+ | - ' | ||
+ | ports: | ||
+ | - ' | ||
+ | </ | ||
+ | |||
+ | You are already seeing some of Dockers magic. with " | ||
+ | |||
+ | You can leave and save the file in nano by hitting Ctrl+X and select yes by hitting " | ||
+ | We can now test our configuration. | ||
+ | |||
+ | <cli> | ||
+ | pi@ioa-webserver: | ||
+ | </ | ||
+ | |||
+ | You should now be able to go to your own instance of FarmOS by going to your favorite browser and going to the webpage [[http:// |
eolab/ioa/offline_farmos/installing_farmos.1664375713.txt.gz · Last modified: 2023/01/05 14:38 (external edit)