You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							906 B
						
					
					
				
			
		
		
	
	
							43 lines
						
					
					
						
							906 B
						
					
					
				version: "3"
 | 
						|
 | 
						|
networks:
 | 
						|
  gitea:
 | 
						|
    external: false
 | 
						|
 | 
						|
services:
 | 
						|
  server:
 | 
						|
    image: gitea/gitea:1.16.8
 | 
						|
    container_name: gitea
 | 
						|
    environment:
 | 
						|
      - USER_UID=9221
 | 
						|
      - USER_GID=9221
 | 
						|
      - GITEA__database__DB_TYPE=postgres
 | 
						|
      - GITEA__database__HOST=db:5432
 | 
						|
      - GITEA__database__NAME=gitea
 | 
						|
      - GITEA__database__USER=gitea-db-user
 | 
						|
      - GITEA__database__PASSWD=gitea-db-109283
 | 
						|
    restart: always
 | 
						|
    networks:
 | 
						|
      - gitea
 | 
						|
    volumes:
 | 
						|
      - /opt/gitea:/data
 | 
						|
      - /etc/timezone:/etc/timezone:ro
 | 
						|
      - /etc/localtime:/etc/localtime:ro
 | 
						|
    ports:
 | 
						|
      - "9221:3000"
 | 
						|
      - "9222:22"
 | 
						|
    depends_on:
 | 
						|
      - db
 | 
						|
 | 
						|
  db:
 | 
						|
    image: postgres:14
 | 
						|
    restart: always
 | 
						|
    environment:
 | 
						|
      - POSTGRES_USER=gitea-db-user
 | 
						|
      - POSTGRES_PASSWORD=gitea-db-109283
 | 
						|
      - POSTGRES_DB=gitea
 | 
						|
    networks:
 | 
						|
      - gitea
 | 
						|
    volumes:
 | 
						|
      - /opt/gitea/postgres:/var/lib/postgresql/data
 |