1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 09:25:48 +00:00

docs(docker): fix diff format. (#14035)

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2020-12-17 13:00:43 +08:00 committed by GitHub
parent 9e456b5a56
commit c57e1f2653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,10 +91,10 @@ services:
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
- - "3000:3000" - - "3000:3000"
- - "222:22" - - "222:22"
+ - "8080:3000" + - "8080:3000"
+ - "2221:22" + - "2221:22"
``` ```
## Databases ## Databases
@ -118,11 +118,11 @@ services:
environment: environment:
- USER_UID=1000 - USER_UID=1000
- USER_GID=1000 - USER_GID=1000
+ - DB_TYPE=mysql + - DB_TYPE=mysql
+ - DB_HOST=db:3306 + - DB_HOST=db:3306
+ - DB_NAME=gitea + - DB_NAME=gitea
+ - DB_USER=gitea + - DB_USER=gitea
+ - DB_PASSWD=gitea + - DB_PASSWD=gitea
restart: always restart: always
networks: networks:
- gitea - gitea
@ -169,11 +169,11 @@ services:
environment: environment:
- USER_UID=1000 - USER_UID=1000
- USER_GID=1000 - USER_GID=1000
+ - DB_TYPE=postgres + - DB_TYPE=postgres
+ - DB_HOST=db:5432 + - DB_HOST=db:5432
+ - DB_NAME=gitea + - DB_NAME=gitea
+ - DB_USER=gitea + - DB_USER=gitea
+ - DB_PASSWD=gitea + - DB_PASSWD=gitea
restart: always restart: always
networks: networks:
- gitea - gitea
@ -226,8 +226,8 @@ services:
networks: networks:
- gitea - gitea
volumes: volumes:
- - ./gitea:/data - - ./gitea:/data
+ - gitea:/data + - gitea:/data
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports: