-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #497 from EpistasisLab/docker_updates
Docker updates
- Loading branch information
Showing
20 changed files
with
99 additions
and
42 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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#!/bin/sh | ||
# Docker production build environment | ||
# ARCH refers to the architecture of the development machine. | ||
# If you are on arm64, set this to arm64, otherwise use x64 | ||
TAG=0.20.a0 | ||
ARCH=x64 |
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 |
---|---|---|
|
@@ -62,3 +62,4 @@ MANIFEST | |
|
||
.xz | ||
.exe | ||
run*Test.sh |
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
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,57 @@ | ||
version: '3' | ||
|
||
services: | ||
lab: | ||
build: | ||
context: . | ||
dockerfile: docker/lab/Dockerfile | ||
x-bake: | ||
platforms: | ||
- linux/arm64 | ||
tty: true | ||
stdin_open: true | ||
volumes: | ||
- "./:/appsrc" | ||
- "/appsrc/lab/webapp/node_modules" | ||
- "/appsrc/lab/node_modules" | ||
ports: | ||
- "5080:5080" | ||
env_file: | ||
- ./config/common.env | ||
- ./config/ai.env | ||
depends_on: | ||
- dbmongo | ||
|
||
machine: | ||
build: | ||
context: . | ||
dockerfile: docker/machine/Dockerfile | ||
x-bake: | ||
platforms: | ||
- linux/arm64 | ||
tty: true | ||
stdin_open: true | ||
volumes: | ||
- "./:/appsrc" | ||
- "/appsrc/machine/node_modules" | ||
ports: | ||
- "5081:5081" | ||
env_file: ./config/common.env | ||
environment: | ||
- MACHINE_PORT=5081 | ||
depends_on: | ||
- lab | ||
- dbmongo | ||
|
||
dbmongo: | ||
build: | ||
context: . | ||
dockerfile: docker/dbmongo/Dockerfile | ||
x-bake: | ||
platforms: | ||
- linux/arm64 | ||
tty: true | ||
stdin_open: true | ||
ports: | ||
- "27017:27017" | ||
env_file: ./config/common.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
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
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
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 @@ | ||
scikit-surprise==1.0.8.2 |
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 @@ | ||
-e git+https://github.com/lacava/surprise.git@1.1.1.1#egg=scikit-surprise |
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
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
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 |
---|---|---|
|
@@ -8,4 +8,5 @@ mlxtend==0.16.0 | |
pydot==1.4.2 | ||
requests==2.25.1 | ||
xgboost==1.6.2 | ||
joblib==1.2.0 | ||
joblib==1.2.0 | ||
shap==0.37.0 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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,4 +1,4 @@ | ||
#!/usr/bin/bash | ||
|
||
docker system prune -a -f --volumes | ||
docker-compose -f docker-compose-int-test.yml up --abort-on-container-exit -V | ||
docker compose -f docker-compose-int-test.yml up --abort-on-container-exit -V |
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,4 +1,4 @@ | ||
#!/usr/bin/bash | ||
|
||
docker system prune -a -f --volumes | ||
docker-compose -f docker-compose-unit-test.yml up --abort-on-container-exit -V | ||
docker compose -f docker-compose-unit-test.yml up --abort-on-container-exit -V |
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