From 0b77bc02425857a301818fa01ca633c319272bef Mon Sep 17 00:00:00 2001 From: Christopher Bunn Date: Sun, 22 Jan 2017 17:22:48 -0800 Subject: [PATCH] Install with Docker: fix typo (#82) --- content/doc/installation/with-docker.en-us.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/doc/installation/with-docker.en-us.md b/content/doc/installation/with-docker.en-us.md index d4e666a..e93749d 100644 --- a/content/doc/installation/with-docker.en-us.md +++ b/content/doc/installation/with-docker.en-us.md @@ -27,7 +27,7 @@ To keep your repositories and some other data persistent you should create a dir sudo mkdir -p /var/lib/gitea ``` -Now it's time to launch the docker container, this is a pretty straigt-forward process. You have to define the port mapping and you also have to provide the volume path for persisting the data: +Now it's time to launch the docker container, this is a pretty straight-forward process. You have to define the port mapping and you also have to provide the volume path for persisting the data: ``` docker run -d --name=gitea -p 10022:22 -p 10080:3000 -v /var/lib/gitea:/data gitea/gitea:latest