Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simple walkthrough of Dockerized Data Science Dev + Deploy pipeline using Iris data

NotificationsYou must be signed in to change notification settings

dushyantkhosla/ds-deploy-walkthru-iris

Repository files navigation

Get Data

  • If data exists on Local, copy it to the server with scp
    • If data sits on the cloud, download it inside the server
  • Optional: Copy SSH keysscp -rp ~/.ssh user@remote-server:/tmp/.ssh
    • Also runssh-add ~/.ssh/id_rsa after adding the.ssh folder to/root

Get Infra

  • SSH into the Server
  • Pull a Docker Container
docker pull <image>docker images

Get Code

git clone git-url

Start Docker

  • Start a Docker Container using the appropriate image, map ports and mirror directories
docker run -it -v $pwd:/home \               -p 8080:8080 \               -p 5000:5000 \               -p 3128:3128 \               your-docker-image
  • PS:If Docker commands do not work, runsystemctl start docker as root and try again

  • Configure Git

git config --global http.proxy http://proxy-url:portgit config --global user.email 'you@domain.com'git config --global user.name 'FirstName LastName'

Directory Structure

./DOCKERFILE      Jenkinsfile     README.md       environment.yml./data:  interim                   processed  raw./figures:./models:./notebooks:  01-Obtain.ipynb      02-Scrub.ipynb       03-Explore.ipynb     04-Model.ipynb       05-iNterpret.ipynb./references:./reports:./src:  __init__.py  obtain        scrub         explore       model  interpret     tests

About

Simple walkthrough of Dockerized Data Science Dev + Deploy pipeline using Iris data

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp