Created
May 19, 2021 23:07
-
-
Save dnburgess/2c43fd4bcf8a326005b29452dc042ecc to your computer and use it in GitHub Desktop.
DB Tech Gitea
This file contains 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.14.2 | |
container_name: gitea | |
environment: | |
- USER_UID=998 | |
- USER_GID=100 | |
- GITEA__database__DB_TYPE=mysql | |
- GITEA__database__HOST=db:3306 | |
- GITEA__database__NAME=gitea | |
- GITEA__database__USER=gitea | |
- GITEA__database__PASSWD=gitea | |
restart: always | |
networks: | |
- gitea | |
volumes: | |
- /srv/confs/gitea:/data | |
- /etc/timezone:/etc/timezone:ro | |
- /etc/localtime:/etc/localtime:ro | |
ports: | |
- "3000:3000" | |
- "2234:22" | |
depends_on: | |
- db | |
db: | |
image: mysql:5.7 | |
restart: always | |
environment: | |
- MYSQL_ROOT_PASSWORD=gitea | |
- MYSQL_USER=gitea | |
- MYSQL_PASSWORD=gitea | |
- MYSQL_DATABASE=gitea | |
networks: | |
- gitea | |
volumes: | |
- /srv/databases/gitea/mysql:/var/lib/mysql |
thanks @dnburgess, works awesome and super easy to make some tweaks for my personal flavor. 👍
Worked for me, thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey thx for his mr burgess