![renovate[bot]](/assets/img/avatar_default.png) 681a1ac74f
			
		
	
	
		681a1ac74f
		
			
		
	
	
	
	
		
			
			* chore(deps): update gitea/gitea docker tag to v1.19.2 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| 
 | |
| services:
 | |
|   gitea:
 | |
|     image: gitea/gitea:1.19.2
 | |
|     container_name: gitea
 | |
|     environment:
 | |
|       - USER_UID=1000
 | |
|       - USER_GID=1000
 | |
|       - GITEA__database__DB_TYPE=postgres
 | |
|       - GITEA__database__HOST=gitea-db:5432
 | |
|       - GITEA__database__NAME=gitea
 | |
|       - GITEA__database__USER=gitea
 | |
|       - GITEA__database__PASSWD=gitea
 | |
|     restart: unless-stopped
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/gitea:/data
 | |
|     ports:
 | |
|       - ${APP_PORT}:3000
 | |
|       - "222:22"
 | |
|     depends_on:
 | |
|       - gitea-db
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       traefik.enable: ${APP_EXPOSED}
 | |
|       traefik.http.routers.gitea.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.gitea.entrypoints: websecure
 | |
|       traefik.http.routers.gitea.service: gitea
 | |
|       traefik.http.routers.gitea.tls.certresolver: myresolver
 | |
|       traefik.http.services.gitea.loadbalancer.server.port: 3000
 | |
| 
 | |
|   gitea-db:
 | |
|     container_name: gitea-db
 | |
|     image: postgres:14
 | |
|     restart: unless-stopped
 | |
|     environment:
 | |
|       - POSTGRES_USER=gitea
 | |
|       - POSTGRES_PASSWORD=gitea
 | |
|       - POSTGRES_DB=gitea
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
 | |
|     networks:
 | |
|       - tipi_main_network
 |