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.
 
florin.hazi 53ee6d5b0a Update 'Dockerfile.core' 2 years ago
conf new file: Dockerfile.core 2 years ago
searchanddisplace-core@955aecce94 Pulled latest updates for S&D submodule repos 2 years ago
searchanddisplace-ingest@96a09813e5 Pulled latest updates for S&D submodule repos 2 years ago
.gitmodules modified: .gitmodules 2 years ago
Dockerfile.core Update 'Dockerfile.core' 2 years ago
Dockerfile.ingest Update 'Dockerfile.ingest' 2 years ago
ReadMe.md Update 'ReadMe.md' 2 years ago
docker-compose.yml new file: Dockerfile.core 2 years ago

ReadMe.md

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