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=local
Then run the following command to build the images:
./dc build
To start the GeoNode instance run the following command:
./dc up -d
To stop the GeoNode instance run the following command:
./dc down
To see the logs of the GeoNode instance run the following command:
./dc logs -f