Skip to content

Commit 92b3d02

Browse files
committed
fix on windows using wsl2
1 parent 28aa0f0 commit 92b3d02

File tree

18 files changed

+152
-99
lines changed

18 files changed

+152
-99
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include src/docker_stuff/*

src/docker/README.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

src/docker/docker-compose/docker-compose-minikube-network.yml renamed to src/docker_stuff/docker-compose/docker-compose-minikube-network.yml

File renamed without changes.

src/docker/docker-compose/docker-compose.yml renamed to src/docker_stuff/docker-compose/docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ x-airflow-common:
22
&airflow-common
33
build:
44
context: ../../
5-
dockerfile: "./docker/airflow/Dockerfile"
5+
dockerfile: "./docker_stuff/airflow/Dockerfile"
66
environment:
77
&airflow-common-env
88
# NOTE: The following secret can be commited to .git as it is only for local development.
@@ -32,6 +32,7 @@ x-airflow-common:
3232

3333
# TODO: Figure out for windows (maybe tcp://host.docker.internal:2375?)
3434
DOCKER_HOST: unix:///var/run/docker.sock
35+
# DOCKER_HOST: tcp://host.docker.internal:2375
3536

3637
user: "${AIRFLOW_UID:-50000}:0"
3738

@@ -74,8 +75,8 @@ services:
7475

7576
mlflow:
7677
build:
77-
context: ../../docker
78-
dockerfile: "../docker/mlflow/Dockerfile"
78+
context: ..
79+
dockerfile: "../docker_stuff/mlflow/Dockerfile"
7980
container_name: mlflow
8081
ports:
8182
- 5000:5000
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/mlflow/mlflow
1+
FROM ghcr.io/mlflow/mlflow:v3.2.0
22

33
COPY mlflow/requirements.txt requirements.txt
44

0 commit comments

Comments
 (0)