Last active
May 11, 2021 16:16
-
-
Save alikins/3c676b04d5b5ca97f0cd2cf48a0cad68 to your computer and use it in GitHub Desktop.
in galaxy_ng/dev/alikins
This file contains 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.7" | |
services: | |
api: | |
env_file: | |
# - './insights/galaxy_ng.env' | |
- './standalone/galaxy_ng.env' | |
- './alikins/galaxy_ng.env' | |
volumes: | |
- './entrypoints.d:/entrypoints.d:z' | |
resource-manager: | |
env_file: | |
# - './insights/galaxy_ng.env' | |
- './standalone/galaxy_ng.env' | |
- './alikins/galaxy_ng.env' | |
volumes: | |
- './entrypoints.d:/entrypoints.d:z' | |
worker: | |
env_file: | |
# - './insights/galaxy_ng.env' | |
- './standalone/galaxy_ng.env' | |
- './alikins/galaxy_ng.env' | |
volumes: | |
- './entrypoints.d:/entrypoints.d:z' | |
content-app: | |
env_file: | |
# - './insights/galaxy_ng.env' | |
- './standalone/galaxy_ng.env' | |
- './alikins/galaxy_ng.env' | |
volumes: | |
- './entrypoints.d:/entrypoints.d:z' | |
postgres: | |
# command: ["postgres", "-c", "log_min_duration_statement=40ms", "-c", "log_lock_waits=on", "-c", "log_min_messages=INFO", "-c", "log_line_prefix=%m %r "] | |
env_file: | |
- './common/postgres.env' | |
- './alikins/galaxy_ng.env' |
This file contains 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 localhost/galaxy_ng/galaxy_ng:base | |
COPY requirements/requirements.standalone.txt /tmp/requirements.standalone.txt | |
COPY requirements/requirements.alikins.txt /tmp/requirements.alikins.txt | |
RUN set -ex; \ | |
pip install --no-cache-dir --requirement /tmp/requirements.standalone.txt; \ | |
pip install --no-cache-dir --requirement /tmp/requirements.alikins.txt |
This file contains 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
# PYTHONASYNCIODEBUG=1 | |
# PULP_GALAXY_REQUIRE_CONTENT_APPROVAL=false | |
PULP_GALAXY_REQUIRE_CONTENT_APPROVAL=true |
This file contains 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
alogging | |
color_bucket_logger | |
debugpy | |
epdb | |
# ipython>7.16 do not support python 3.6 | |
ipython<7.17 | |
# trailets > 4.x do not support python 3.6 | |
traitlets~=4.3.3,<5.0.0 | |
logging_tree | |
prettyprinter | |
ptpython | |
ptvsd | |
pygments | |
sqlparse | |
django-extensions | |
pytest | |
# django-automated-logging | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
requirements.alikins.in goes in galaxy_ng/requirements/