-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
188 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM coreoasis/api_server:latest | ||
|
||
COPY --chown=server:server $ods_package ./ | ||
USER server | ||
|
||
# Install ods_tools from package file (Optional) 'docker build --build-arg ods_package=<whl>' | ||
ARG ods_package | ||
RUN if [ ! -z "$ods_package" ]; then \ | ||
pip uninstall ods-tools -y; \ | ||
pip install --user --no-warn-script-location $ods_package; \ | ||
fi | ||
|
||
# Install ODS-Tools from git branch (Optional) 'docker build --build-arg ods_tools_branch=develop' | ||
ARG ods_tools_branch | ||
RUN if [ ! -z "$ods_tools_branch" ] ; then \ | ||
apt update && apt install -y git; \ | ||
pip uninstall ods-tools -y; \ | ||
pip install --user --no-warn-script-location -v git+https://[email protected]/OasisLMF/ODS_Tools.git@${ods_tools_branch}#egg=ods-tools; \ | ||
fi | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,38 @@ | ||
FROM coreoasis/model_worker:latest | ||
|
||
|
||
# Install MDK from git branch | ||
# 'docker build --build-arg oasislmf_branch=develop ...' | ||
ARG oasislmf_branch | ||
|
||
# Instal local MDK package in worker | ||
# 'docker build --build-arg oasislmf_package=oasislmf-1.27.0rc3-py3-none-manylinux1_x86_64.whl ...' | ||
ARG oasislmf_package | ||
|
||
# Instal local ods_tools package | ||
# 'docker build --build-arg ods_tools_package=<package-name>.whl ...' | ||
ARG ods_package | ||
|
||
|
||
WORKDIR /home/worker | ||
COPY ./docker/oasislmf_deploy.json /home/worker/model/oasislmf.json | ||
COPY ./meta-data/model_settings.json /home/worker/model/meta-data/model_settings.json | ||
ENTRYPOINT ./startup.sh | ||
|
||
# Copy in packages if given | ||
COPY $ods_package ./ | ||
COPY $oasislmf_package ./ | ||
|
||
# Install ods_tools from package file (Optional) | ||
|
||
# Install ods_tools from package file (Optional) 'docker build --build-arg ods_package=<whl>' | ||
ARG ods_package | ||
RUN if [ ! -z "$ods_package" ]; then \ | ||
pip uninstall ods-tools -y; \ | ||
pip install $ods_package; \ | ||
fi | ||
fi | ||
|
||
# Install MDK from package file (Optional) | ||
RUN if [ ! -z "$oasislmf_package" ]; then \ | ||
# Install ODS-Tools from git branch (Optional) 'docker build --build-arg ods_tools_branch=develop' | ||
ARG ods_tools_branch | ||
RUN if [ ! -z "$ods_tools_branch" ] ; then \ | ||
apt update && apt install -y git; \ | ||
pip uninstall ods-tools -y; \ | ||
pip install --user --no-warn-script-location -v git+https://[email protected]/OasisLMF/ODS_Tools.git@${ods_tools_branch}#egg=ods-tools; \ | ||
fi | ||
|
||
# Install MDK from package file (Optional) 'docker build --build-arg oasislmf_package=<whl>' | ||
ARG oasislmf_package | ||
RUN if [ ! -z "$oasislmf_package" ]; then \ | ||
pip uninstall oasislmf -y; \ | ||
pip install $oasislmf_package; \ | ||
fi | ||
fi | ||
|
||
# install MDK from git branch (Optional) | ||
# install MDK from git branch (Optional) 'docker build --build-arg oasislmf_branch=develop' | ||
ARG oasislmf_branch | ||
RUN if [ ! -z "$oasislmf_branch" ] ; then \ | ||
apt update && apt install -y git; \ | ||
pip uninstall oasislmf -y; \ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
version: '3.4' | ||
volumes: | ||
server-db-OasisData: | ||
celery-db-OasisData: | ||
filestore-OasisData: | ||
x-shared-env: &shared-env | ||
OASIS_DEBUG: 1 | ||
OASIS_URL_SUB_PATH: 0 | ||
OASIS_CELERY_BROKER_URL: "amqp://rabbit:rabbit@broker:5672" | ||
OASIS_SERVER_DB_HOST: server-db | ||
OASIS_SERVER_DB_PASS: oasis | ||
OASIS_SERVER_DB_USER: oasis | ||
OASIS_SERVER_DB_NAME: oasis | ||
OASIS_SERVER_DB_PORT: 5432 | ||
OASIS_SERVER_CHANNEL_LAYER_HOST: channel-layer | ||
OASIS_SERVER_DB_ENGINE: django.db.backends.postgresql_psycopg2 | ||
OASIS_CELERY_DB_ENGINE: db+postgresql+psycopg2 | ||
OASIS_CELERY_DB_HOST: celery-db | ||
OASIS_CELERY_DB_PASS: password | ||
OASIS_CELERY_DB_USER: celery | ||
OASIS_CELERY_DB_NAME: celery | ||
OASIS_CELERY_DB_PORT: 5432 | ||
OASIS_INPUT_GENERATION_CONTROLLER_QUEUE: task-controller | ||
OASIS_LOSSES_GENERATION_CONTROLLER_QUEUE: task-controller | ||
x-volumes: &shared-volumes | ||
- filestore-OasisData:/shared-fs:rw | ||
services: | ||
server: | ||
restart: always | ||
image: ${SERVER_IMG:-coreoasis/api_server}:${SERVER_TAG:-2.1.0-dev} | ||
command: ["./wsgi/run-wsgi.sh"] | ||
ports: | ||
- 8000:8000 | ||
links: | ||
- server-db | ||
- celery-db | ||
- broker | ||
environment: | ||
<<: *shared-env | ||
STARTUP_RUN_MIGRATIONS: "true" | ||
OASIS_ADMIN_USER: admin | ||
OASIS_ADMIN_PASS: password | ||
volumes: | ||
- filestore-OasisData:/shared-fs:rw | ||
websocket: | ||
restart: always | ||
image: coreoasis/api_server:dev | ||
image: ${SERVER_IMG:-coreoasis/api_server}:${SERVER_TAG:-2.1.0-dev} | ||
command: ["./asgi/run-asgi.sh"] | ||
links: | ||
- server-db | ||
- celery-db | ||
- broker | ||
ports: | ||
- 8001:8001 | ||
environment: | ||
<<: *shared-env | ||
volumes: | ||
- filestore-OasisData:/shared-fs:rw | ||
worker-monitor: | ||
restart: always | ||
image: ${SERVER_IMG:-coreoasis/api_server}:${SERVER_TAG:-2.1.0-dev} | ||
command: [celery, -A, src.server.oasisapi.celery_app, worker, --loglevel=INFO] | ||
links: | ||
- server-db | ||
- celery-db | ||
- broker | ||
environment: | ||
<<: *shared-env | ||
volumes: | ||
- filestore-OasisData:/shared-fs:rw | ||
task-controller: | ||
restart: always | ||
image: ${SERVER_IMG:-coreoasis/api_server}:${SERVER_TAG:-2.1.0-dev} | ||
command: [celery, -A, src.server.oasisapi.celery_app, worker, --loglevel=INFO, -Q, task-controller] | ||
links: | ||
- server-db | ||
- celery-db | ||
- broker | ||
environment: | ||
<<: *shared-env | ||
volumes: | ||
- filestore-OasisData:/shared-fs:rw | ||
celery-beat: | ||
restart: always | ||
image: ${SERVER_IMG:-coreoasis/api_server}:${SERVER_TAG:-2.1.0-dev} | ||
command: [celery, -A, src.server.oasisapi.celery_app, beat, --loglevel=INFO] | ||
links: | ||
- server-db | ||
- celery-db | ||
- broker | ||
environment: | ||
<<: *shared-env | ||
volumes: *shared-volumes | ||
worker: | ||
restart: always | ||
image: ${WORKER_IMG:-coreoasis/model_worker}:${WORKER_TAG:-2.1.0-dev} | ||
links: | ||
- celery-db | ||
- broker:mybroker | ||
environment: | ||
<<: *shared-env | ||
OASIS_MODEL_SUPPLIER_ID: OasisLMF | ||
OASIS_MODEL_ID: PiWind | ||
OASIS_MODEL_VERSION_ID: 1 | ||
volumes: | ||
- ../:/home/worker/model | ||
- filestore-OasisData:/shared-fs:rw | ||
server-db: | ||
restart: always | ||
image: postgres | ||
environment: | ||
- POSTGRES_DB=oasis | ||
- POSTGRES_USER=oasis | ||
- POSTGRES_PASSWORD=oasis | ||
volumes: | ||
- server-db-OasisData:/var/lib/postgresql/data:rw | ||
ports: | ||
- 33307:3306 | ||
celery-db: | ||
restart: always | ||
image: postgres | ||
environment: | ||
- POSTGRES_DB=celery | ||
- POSTGRES_USER=celery | ||
- POSTGRES_PASSWORD=password | ||
volumes: | ||
- celery-db-OasisData:/var/lib/postgresql/data:rw | ||
ports: | ||
- 33306:5432 | ||
broker: | ||
restart: always | ||
image: rabbitmq:3.8.14-management | ||
environment: | ||
- RABBITMQ_DEFAULT_USER=rabbit | ||
- RABBITMQ_DEFAULT_PASS=rabbit | ||
ports: | ||
- 5672:5672 | ||
- 15672:15672 | ||
channel-layer: | ||
restart: always | ||
image: redis:5.0.7 | ||
ports: | ||
- 6379:6379 |
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