This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
secrets: | |
metabrainz_access_token: | |
file: local/secrets/metabrainz_access_token | |
services: | |
db: | |
build: | |
args: | |
POSTGRES_VERSION: '12' | |
context: build/postgres | |
command: postgres -c "shared_buffers=4GB" -c "shared_preload_libraries=pg_amqp.so" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
# Description: Use remote search server | |
services: | |
musicbrainz: | |
environment: | |
- MUSICBRAINZ_SEARCH_SERVER=search.musicbrainz.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
# Description: Run local version of MusicBrainz Server Perl code | |
services: | |
musicbrainz: | |
volumes: | |
- ${MUSICBRAINZ_SERVER_LOCAL_LIB_PATH}:/musicbrainz-server/lib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/docker-compose.yml b/docker-compose.yml | |
index ec558603..8e0a0393 100644 | |
--- a/docker-compose.yml | |
+++ b/docker-compose.yml | |
@@ -81,24 +81,18 @@ services: | |
- search | |
search: | |
- build: | |
- context: build/solr |
- Improve queuing for SIR, thanks to mglubb’s PR - yvanzo
- Update to Java 11 for MB Solr - lucifer
- Fix inconsistencies with MB WS browse/lookup in MB Solr JSON output - lucifer
- Investigate SIR’s usage of SQLAlchemy - alastairp/bitmap
## Major short-term issues
- SIR indexing performances for mirrors (using musicbrainz-docker)
Steps to bring changes to MB WS/2 (browse/lookup/search) when it affects search:
-
Update and release mmd-schema (Mb metaData Schema) (including Relax NG schema + Java bindings)
-
Update and release mb-solr (search server) (including unit tests) (do not deploy yet)
-
Update sir (search indexer)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG PYTHON_VERSION=2.7 | |
FROM metabrainz/python:${PYTHON_VERSION} | |
ARG PYTHON_VERSION | |
LABEL org.label-schema.schema-version="1.0.0-rc1" \ | |
org.label-schema.vendor="MetaBrainz Foundation" \ | |
org.metabrainz.based-on-image="metabrainz/python:${PYTHON_VERSION}" | |
####################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM postgres:12 | |
ARG DEBIAN_FRONTEND=noninteractive | |
# install_extensions.sh removes certain build dependencies that we need, so we | |
# can't install everything here. | |
# Note: curl is also a dependency of carton. | |
RUN apt-get update && ( \ | |
apt-get install --no-install-suggests --no-install-recommends -y ca-certificates curl sudo || ( \ | |
apt-key adv --keyserver keyserver.ubuntu.com --refresh-keys && \ |
NewerOlder