Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 7 additions & 21 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,11 @@ services:
user: "0"
environment:
- ELASTIC_PASSWORD=secretsecret
- KIBANA_PASSWORD=${KIBANA_PASSWORD:-kibanakibana}
command: >
bash -c '
if [ x$${ELASTIC_PASSWORD} == x ]; then
echo "Set the ELASTIC_PASSWORD environment variable";
exit 1;
elif [ x$${KIBANA_PASSWORD} == x ]; then
echo "Set the KIBANA_PASSWORD environment variable";
exit 1;
fi;
if [ ! -f config/certs/ca.zip ]; then
echo "Creating CA";
Expand All @@ -67,28 +63,19 @@ services:
bin/elasticsearch-certutil cert --silent --pem -out config/certs/certs.zip --in config/certs/instances.yml --ca-cert config/certs/ca/ca.crt --ca-key config/certs/ca/ca.key;
unzip config/certs/certs.zip -d config/certs;
fi
echo "Setting file permissions"
echo "Setting cert file permissions (give read permission to all users -- may not be suitable for production)"
chown -R root:root config/certs;
find . -type d -exec chmod 750 \{\} \;;
find . -type f -exec chmod 640 \{\} \;;
echo "Waiting for Elasticsearch availability";
until curl -s --cacert config/certs/ca/ca.crt https://elastic8:9200 | grep -q "missing authentication credentials"; do sleep 1; done;
echo "Setting kibana_system password";
until curl -s -X POST --cacert config/certs/ca/ca.crt -u "elastic:$${ELASTIC_PASSWORD}" -H "Content-Type: application/json" https://elastic8:9200/_security/user/kibana_system/_password -d "{\"password\":\"$${KIBANA_PASSWORD}\"}" | grep -q "^{}"; do sleep 1; done;
find . -type d -exec chmod 755 \{\} \;;
find . -type f -exec chmod 644 \{\} \;;
echo "All done!";
'
healthcheck:
test: ["CMD-SHELL", "[ -f config/certs/singlenode/singlenode.crt ]"]
interval: 1s
timeout: 5s
retries: 120
networks:
- share_network

elastic8:
depends_on:
elastic8_setup:
condition: service_healthy
condition: service_completed_successfully
image: docker.elastic.co/elasticsearch/elasticsearch:8.18.3
ports:
- 9208:9200
Expand All @@ -115,7 +102,7 @@ services:
- share_network

rabbitmq:
image: rabbitmq:management
image: rabbitmq:3.8-management
ports:
- 5673:5672
- 15673:15672
Expand Down Expand Up @@ -165,8 +152,7 @@ services:
context: .
dockerfile: Dockerfile
target: dev
command:
/bin/bash -c 'cp -r /elastic8_certs /elastic_certs && chown -R daemon:daemon /elastic_certs/ && /usr/local/bin/celery --app project worker --uid daemon -l INFO'
command: /usr/local/bin/celery --app project worker --uid daemon -l INFO
depends_on:
- postgres
- rabbitmq
Expand All @@ -181,7 +167,7 @@ services:
- .docker-compose.env
environment:
- ELASTICSEARCH8_SECRET=secretsecret
- ELASTICSEARCH8_CERT_PATH=/elastic_certs/ca/ca.crt
- ELASTICSEARCH8_CERT_PATH=/elastic8_certs/ca/ca.crt
stdin_open: true
networks:
- share_network
Expand Down
14 changes: 7 additions & 7 deletions how-to/run-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ docker-compose up -d postgres elastic8
since we're not installing anything more on the host machine, it'll be useful to open
a shell running within SHARE's environment in docker:
```
docker-compose run --rm --no-deps worker bash
docker-compose run --rm --no-deps indexer bash
```
this will open a bash prompt within a temporary `worker` container -- from here we can
this will open a bash prompt within a temporary `indexer` container -- from here we can
run commands within SHARE's environment, including django's `manage.py`

from within that worker shell, use django's `migrate` command to create tables in postgres:
from within that indexer shell, use django's `migrate` command to create tables in postgres:
```
python manage.py migrate
```
Expand Down Expand Up @@ -94,14 +94,14 @@ docker-compose up -d worker
there are several ways to open a shell with SHARE's environment (which has
django's `manage.py` and management commands defined in `management/commands/`

if `worker` is already up, can open a shell within that container:
if `indexer` is already up, can open a shell within that container:
```
docker-compose exec worker bash
docker-compose exec indexer bash
```

if no services are up, can open a shell within a new, temporary `worker` container:
if no services are up, can open a shell within a new, temporary `indexer` container:
```
docker-compose run --rm --no-deps worker bash
docker-compose run --rm --no-deps indexer bash
```
(remove `--no-deps` if you'd like the other services started automatically)

Expand Down
2 changes: 1 addition & 1 deletion how-to/use-the-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

`GET /trove/browse?iri=...`: inquire about a thing you have already identified

(see [openapi docs](/trove/docs/openapi.html) for detail and available parameters)
(see [openapi docs](https://share.osf.io/trove/docs) for detail and available parameters)


### Posting index-cards
Expand Down
Loading