mirror of
https://github.com/Toumash/mlflow-docker
synced 2025-11-04 23:29:19 +01:00
Compare commits
10 Commits
pr/simplif
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57be284980 | ||
|
|
723782dc1d | ||
|
|
740bfec7f4 | ||
|
|
6418955ea0 | ||
|
|
3d4b960979 | ||
|
|
068d3347e1 | ||
|
|
bd364c18b8 | ||
|
|
a85c82d09f | ||
|
|
ab927b897e | ||
|
|
120d8146e4 |
2
.github/workflows/verify-docker-compose.yml
vendored
2
.github/workflows/verify-docker-compose.yml
vendored
@@ -4,7 +4,7 @@ jobs:
|
|||||||
verify:
|
verify:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Show the config
|
- name: Show the config
|
||||||
run: docker-compose config
|
run: docker-compose config
|
||||||
- name: Run
|
- name: Run
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
version: "3.9"
|
version: "3.9"
|
||||||
services:
|
services:
|
||||||
s3:
|
s3:
|
||||||
image: minio/minio:RELEASE.2021-11-24T23-19-33Z
|
image: minio/minio:RELEASE.2023-11-01T18-37-25Z
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "9000:9000"
|
- "9000:9000"
|
||||||
@@ -14,9 +14,9 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
- public
|
- public
|
||||||
volumes:
|
volumes:
|
||||||
- minio_volume:/data
|
- minio_new_volume:/data
|
||||||
db:
|
db:
|
||||||
image: mysql/mysql-server:5.7.28
|
image: mysql:8-oracle # -oracle tag supports arm64 architecture!
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: mlflow_db
|
container_name: mlflow_db
|
||||||
expose:
|
expose:
|
||||||
@@ -27,7 +27,7 @@ services:
|
|||||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
||||||
volumes:
|
volumes:
|
||||||
- db_volume:/var/lib/mysql
|
- db_new_volume:/var/lib/mysql
|
||||||
networks:
|
networks:
|
||||||
- internal
|
- internal
|
||||||
mlflow:
|
mlflow:
|
||||||
@@ -71,6 +71,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: ./test_experiment
|
context: ./test_experiment
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
platform: linux/amd64 # once continuumio/miniconda3:latest image work on native aarch64 (arm), remove this line
|
||||||
depends_on:
|
depends_on:
|
||||||
- "mlflow"
|
- "mlflow"
|
||||||
environment:
|
environment:
|
||||||
@@ -91,5 +92,5 @@ networks:
|
|||||||
public:
|
public:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
volumes:
|
volumes:
|
||||||
db_volume:
|
db_new_volume:
|
||||||
minio_volume:
|
minio_new_volume:
|
||||||
|
|||||||
Reference in New Issue
Block a user