Add a docker/README.md file explaining how to run farmOS with Docker, and pointing to the official docs.

This commit is contained in:
Michael Stenta 2019-04-20 12:18:16 -04:00
parent c1a98a814e
commit ff2a738f32
1 changed files with 16 additions and 0 deletions

16
docker/README.txt Normal file
View File

@ -0,0 +1,16 @@
# Running farmOS with Docker
This directory contains files necessary to build the farmOS Docker image, along
with example `docker-compose.yml` files that can be used for running farmOS in
Docker containers.
To run a farmOS development environment, copy `docker-compose.development.yml`
into a new directory on your server, rename it to `docker-compose.yml` and run
`docker-compose up`.
If you would like to experiment with installing farmOS on PostgreSQL with
PostGIS, copy the `docker-compose.override.postgis.yml` file to the same
directory and rename it to `docker-compose.override.yml`. This will override
the `db` configuration from `docker-compose.development.yml`.
For more information, see farmOS.org/hosting/docker.