You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,9 +117,17 @@ The image below shows the pipelines visualization for this project:
117
117
This project includes a multi-stage Dockerfile, which produces an image with the code and the dependencies installed. You can build the image with:
118
118
119
119
```bash
120
-
just dockerize
120
+
just docker-build
121
121
```
122
122
123
+
Then, you can run the Kedro pipelines inside a container with the image you just built by running:
124
+
125
+
```bash
126
+
just docker-run
127
+
```
128
+
129
+
The outputs of the pipelines will still be saved in your local `data/` folder, because the docker container mounts the `data/` folder as a volume.
130
+
123
131
### Github Actions
124
132
125
133
This project includes a Github Actions workflow that runs the formatters, linters, and tests on every push/PR to the `main` or `develop` branches. You can find the workflow file in `.github/workflows/format-lint-test.yml`.
0 commit comments