Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ryosk7/my_base_docker_image

僕の最強のDocker image for Docker on Linux。
https://github.com/ryosk7/my_base_docker_image

Last synced: 20 days ago
JSON representation

僕の最強のDocker image for Docker on Linux。

Awesome Lists containing this project

README

        

# ぼくの最強のDocker image だよ!!

## Docker on Linux用
Dockerのコンテナにローカルと同じuserで入れるよ☆

### Docker imageをbuild
```sh
#shell
$ docker build -t mybase .
```
### Docker imageを別ファイルに作る
RubyやNodeを好きに入れてイメージを作成
```dockerfile
#Docker file
FROM mybase

CMD ["/bin/bash"]
```
build!!
```sh
#shell
docker build -t myimage .
```
以下のコマンドでDockerのコンテナにローカルユーザーと同じUIDで入る
```sh
#shell
docker run -it -e LOCAL_USER_ID=`id -u $USER` myimage
```
Let's happy Docker!:whale: