Installation for S&D
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

865 B

A docker container configuration for search and displace

Initialization steps

  1. Initialize the repositories
git submodule init
git submodule update
  1. Copy .env.example renaming it to .env
cp searchanddisplace-core/.env.example searchanddisplace-core/.env
cp searchanddisplace-ingest/.env.example searchanddisplace-ingest/.env
  1. Manually configure the two environment files from the searchanddisplace-core and searchanddisplace-ingest folders
  1. How to upgrade?
git -C searchanddisplace-core checkout master && \
git -C searchanddisplace-ingest checkout master && \
git -C searchanddisplace-core pull && \
git -C searchanddisplace-ingest pull && \
docker-compose up -d --build