You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,8 @@ If you don't have Node.js installed in your local environment and don't want to
47
47
1. Make sure that you have [Docker](https://docs.docker.com/engine/install/) installed in your computer. You can test running `docker version` in the terminal.
48
48
1.`cp sample_settings.ts settings.ts`
49
49
1. edit settings.ts
50
-
1.`docker build -t node-gitlab-2-github:latest .`
51
-
1.`docker run node-gitlab-2-github:latest`
50
+
1.`docker build -t node-gitlab-2-github:latest .`, or, you can use `make build-image`
51
+
1.`docker run node-gitlab-2-github:latest`, or, you can use `make docker-run`
52
52
53
53
If you want to let it run in the background (detached mode), just use the following command:
54
54
@@ -63,8 +63,8 @@ The process to use this trick is pretty much the same we presented before, the o
63
63
1. Make sure that you have [Docker](https://docs.docker.com/engine/install/) installed in your computer. You can test running `docker version` in the terminal.
64
64
1.`cp sample_settings.ts settings.ts`
65
65
1. edit settings.ts
66
-
1.`docker build -t node-gitlab-2-github:latest .`
67
-
1. This command must work for **Linux** or **Mac**: `docker run --mount type=bind,source="$(pwd)/settings.ts",target="/app/settings.ts",readonly node-gitlab-2-github:latest`
66
+
1.`docker build -t node-gitlab-2-github:latest .`, or, you can use `make build-image`
67
+
1. This command must work for **Linux** or **Mac**: `docker run --mount type=bind,source="$(pwd)/settings.ts",target="/app/settings.ts",readonly node-gitlab-2-github:latest`, or, you can use `make docker-run-bind`
68
68
69
69
* If you want to run this last command in the Windows environment, please consult the Docker documentation on how to solve the problem of the pwd command expanding incorrectly there - [Docker documentation - Topics for windows](https://docs.docker.com/desktop/troubleshoot/topics/#topics-for-windows).
0 commit comments