Created
June 11, 2024 19:24
-
-
Save ericmann/2a61e0e87feabdc80a463605a0cf9583 to your computer and use it in GitHub Desktop.
Simple Docker Compose configuration for self hosted Gitea backed by MySQL.
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.22.0 | |
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 | |
restart: always | |
networks: | |
- gitea | |
volumes: | |
- ./data:/data | |
- /etc/timezone:/etc/timezone:ro | |
- /etc/localtime:/etc/localtime:ro | |
ports: | |
- "8000:3000" | |
- "2224:22" | |
depends_on: | |
- db | |
db: | |
image: mysql:8 | |
restart: always | |
environment: | |
- MYSQL_ROOT_PASSWORD=gitea | |
- MYSQL_USER=gitea | |
- MYSQL_PASSWORD=gitea | |
- MYSQL_DATABASE=gitea | |
networks: | |
- gitea | |
volumes: | |
- ./db_data:/var/lib/mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment