Skip to content

Commit

Permalink
WIP update slides
Browse files Browse the repository at this point in the history
  • Loading branch information
joelnitta committed May 30, 2024
1 parent cbbb8b6 commit 54039a4
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docker/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,35 @@ Pythonをインストールするために、`Dockerfile`には何と書けば
## チャレンジ:このスクリプトの使い方

- `sum.py`の後に数字を書くと、どうなりますか?

## チャレンジ:オプションの復習

- Docker のコマンドがずいぶん長くなりました。それぞれのオプションの意味は何でしょう?

```
docker container run --mount type=bind,source=${PWD},target=/temp alice/alpine-python python3 /temp/sum.py
```

## コマンドの書き方(復習)

一般的にこのように書きます:

```
docker [action] [docker options] [docker container image] [command to run inside]
```

## チャレンジ:インターアクティブモード

前のコンテナを**インターアクティブ**に実行して見てください。**マウントされたフォルダーに入ることは出来ますか?**

## チャレンジ:コンテナ内からスクリプトを実行

今作ったコンテナにインターアクティブモードで入って、コピーした`sum.py`を実行して下さい。

## 実際の Docker の例を見て見ましょう

- https://github.com/joelnitta/pleurosoriopsis
- 一つのイメージで解析を再現する方法

- https://github.com/joelnitta/targets_bioinfo_example
- 複数のイメージを組み込んだ解析
19 changes: 19 additions & 0 deletions git/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,25 @@ git pull origin main

また、GitHubではどうやって確認できますか?

# 1日目のおさらい

## 1日目のおさらい

- シェルは理系研究に必須なスキル
- オープンソースソフトウエア
- サーバー
- git, Docker

- git は細かいレベルでコードの変更を追跡して、共有を可能にする

## よくできたこと



## 改善できること

-

# 衝突の管理

---
Expand Down

0 comments on commit 54039a4

Please sign in to comment.