This repository contains a docker-compose configuration for a GeoNode instance.
- Docker
 - Docker Compose
 
First need to create a .env file with the following content:
    # project name suffix for docker-compose
    COMPOSE_PROJECT_NAME=geonode3
    # environment to use
    SET_DOCKER_ENV=localThen run the following command to build the images:
    ./dc buildTo start the GeoNode instance run the following command:
    ./dc up -dTo stop the GeoNode instance run the following command:
    ./dc downTo see the logs of the GeoNode instance run the following command:
    ./dc logs -f