Skip to content

Commit e7d6d32

Browse files
committed
Docker documentation.
1 parent d35ae80 commit e7d6d32

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

docker/README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
In this tutorial, we explain how to develop, build and run this project inside a docker container.
44

5+
The container user and password are:
6+
7+
**developer:developer**
8+
59
## Prerequisites
610

711
First, you must install `docker`.
@@ -13,28 +17,28 @@ sudo sh get-docker.sh
1317

1418
## Build and start up a container
1519

16-
Run this script to create an image and a container:
20+
From the root of the repo, run this script to create an image and a container:
1721

1822
```bash
19-
./dock.sh [container-name] build [absolute-repo-path]
23+
./docker/dock.sh [container-name] build
2024
```
2125

2226
Run this to start the container with an interactive shell:
2327

2428
```bash
25-
./dock.sh [container-name] start
29+
./docker/dock.sh [container-name] start
2630
```
2731

2832
Run this to stop the container:
2933

3034
```bash
31-
./dock.sh [container-name] stop
35+
./docker/dock.sh [container-name] stop
3236
```
3337

3438
Finally, run this to remove container and image:
3539

3640
```bash
37-
./dock.sh [container-name] clean
41+
./docker/dock.sh [container-name] clean
3842
```
3943

4044
## Working with the code

0 commit comments

Comments
 (0)