Merge pull request #74 from vrifox/use-default-parameters

Container: Use default parameters
This commit is contained in:
Jörg Reichert 2023-05-03 19:07:33 +02:00 committed by GitHub
commit 70c5d88cd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,8 @@ services:
links: links:
- elasticsearch - elasticsearch
environment: environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200 - ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
- APPLICATION_HOST=$APPLICATION_HOST - APPLICATION_HOST=${APPLICATION_HOST:-localhost}
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET - SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
command: sh -c "cd /home/srm/app && export PATH=/home/srm/.rbenv/bin:$PATH && eval \"$(~/.rbenv/bin/rbenv init -)\" && bundle install && bundle exec puma -C config/puma.rb" command: sh -c "cd /home/srm/app && export PATH=/home/srm/.rbenv/bin:$PATH && eval \"$(~/.rbenv/bin/rbenv init -)\" && bundle install && bundle exec puma -C config/puma.rb"
elasticsearch: elasticsearch:
@ -24,7 +24,7 @@ services:
ports: ports:
- "9215:9200" - "9215:9200"
volumes: volumes:
- $ESDATA:/usr/share/elasticsearch/data //read, write and execute - ${ESDATA:-esdata}:/usr/share/elasticsearch/data //read, write and execute
- ./docker/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml - ./docker/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
command: sh -c "/usr/share/elasticsearch/bin/elasticsearch" command: sh -c "/usr/share/elasticsearch/bin/elasticsearch"
elastichq: elastichq: