Browse Source

add quotation around ports in docker-compose.yml (#3090)

tags/v1.21.12.1
bibaijin Lunny Xiao 8 years ago
parent
commit
e2968b4c98
1 changed files with 12 additions and 12 deletions
  1. +12
    -12
      docs/content/doc/installation/with-docker.en-us.md

+ 12
- 12
docs/content/doc/installation/with-docker.en-us.md View File

@@ -39,8 +39,8 @@ services:
volumes:
- ./gitea:/data
ports:
- 3000:3000
- 222:22
- "3000:3000"
- "222:22"
```

## Custom port
@@ -63,10 +63,10 @@ services:
volumes:
- ./gitea:/data
ports:
- - 3000:3000
- - 222:22
+ - 8080:3000
+ - 2221:22
- - "3000:3000"
- - "222:22"
+ - "8080:3000"
+ - "2221:22"
```

## MySQL database
@@ -89,8 +89,8 @@ services:
volumes:
- ./gitea:/data
ports:
- 3000:3000
- 222:22
- "3000:3000"
- "222:22"
+ depends_on:
+ - db
+
@@ -128,8 +128,8 @@ services:
volumes:
- ./gitea:/data
ports:
- 3000:3000
- 222:22
- "3000:3000"
- "222:22"
+ depends_on:
+ - db
+
@@ -171,8 +171,8 @@ services:
- - ./gitea:/data
+ - gitea:/data
ports:
- 3000:3000
- 222:22
- "3000:3000"
- "222:22"
```

If you are using MySQL or PostgreSQL it's up to you to create named volumes for these containers as well.


Loading…
Cancel
Save