Created
August 31, 2022 06:13
-
-
Save nyrahul/f718a798b8444c9001c53709f27bd78b to your computer and use it in GitHub Desktop.
gitea docker-compose yaml that just works
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
networks: | |
gitea: | |
external: false | |
services: | |
server: | |
image: gitea/gitea:1.17.1 | |
container_name: gitea | |
environment: | |
- USER_UID=1000 | |
- USER_GID=1000 | |
- GITEA__database__DB_TYPE=mysql | |
- GITEA__database__HOST=db:3306 | |
- GITEA__database__NAME=gitea | |
- GITEA__database__USER=gitea | |
- GITEA__database__PASSWD=gitea@5248 | |
- GITEA__SERVER__ROOT_URL=http://13.90.113.49:3000/ | |
- GITEA__SERVER__LOCAL_ROOT_URL=http://13.90.113.49:3000/ | |
restart: always | |
networks: | |
- gitea | |
volumes: | |
- ./gitea:/data | |
- /etc/timezone:/etc/timezone:ro | |
- /etc/localtime:/etc/localtime:ro | |
ports: | |
- "3000:3000" | |
- "222:22" | |
depends_on: | |
- db | |
db: | |
image: mysql:8 | |
restart: always | |
environment: | |
- MYSQL_ROOT_PASSWORD=gitea@5248 | |
- MYSQL_USER=gitea | |
- MYSQL_PASSWORD=gitea@5248 | |
- MYSQL_DATABASE=gitea | |
networks: | |
- gitea | |
volumes: | |
- ./mysql:/var/lib/mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment