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.
|
11 months ago | |
---|---|---|
conf | 11 months ago | |
searchanddisplace-core@955aecce94 | 11 months ago | |
searchanddisplace-ingest@96a09813e5 | 11 months ago | |
.gitmodules | 11 months ago | |
Dockerfile.core | 11 months ago | |
Dockerfile.ingest | 11 months ago | |
ReadMe.md | 11 months ago | |
docker-compose.yml | 11 months ago |
ReadMe.md
A docker container configuration for search and displace
Initialization steps
- Initialize the repositories
git submodule init
git submodule update
- Copy .env.example renaming it to .env
cp searchanddisplace-core/.env.example searchanddisplace-core/.env
cp searchanddisplace-ingest/.env.example searchanddisplace-ingest/.env
- Manually configure the two environment files from the searchanddisplace-core and searchanddisplace-ingest folders
- REDIS_HOST: search-and-display-redis
- SD_INGEST_URL: http://search-and-display-ingest
- WEBHOOK_CORE_URL=http://search-and-display-core
- 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