# dockerfile-examples **Repository Path**: kis/dockerfile-examples ## Basic Information - **Project Name**: dockerfile-examples - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-05 - **Last Updated**: 2021-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Some basic dockerfile examples ============================== Use with Docker http://www.docker.io To build an image with docker is pretty simple: cd rethinkdb docker build -t="rethinkdb" . Then to run that image and attach to it at the same time: docker run -i -t rethinkdb Or to run it in the background docker run -d rethinkdb