Merge pull request #1 from cerc-io/dboreham/add-basic-pipeline

Add gitea
This commit is contained in:
David Boreham 2022-12-14 13:18:11 -07:00 committed by GitHub
commit af71828317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 49 additions and 0 deletions

3
gitea/README.md Normal file
View File

@ -0,0 +1,3 @@
## Manual deployment notes
### Gitea
1. Create admin user in web UI on initial setup

43
gitea/docker-compose.yml Normal file
View File

@ -0,0 +1,43 @@
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=postgres
- GITEA__database__HOST=db:5432
- GITEA__database__NAME=gitea
- GITEA__database__USER=gitea
- GITEA__database__PASSWD=gitea
restart: always
networks:
- gitea
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
# TODO: remove fixed host port number
ports:
- "3000:3000"
- "222:22"
depends_on:
- db
db:
image: postgres:14
restart: always
environment:
- POSTGRES_USER=gitea
- POSTGRES_PASSWORD=gitea
- POSTGRES_DB=gitea
networks:
- gitea
volumes:
- ./postgres:/var/lib/postgresql/data

3
gitea/run-this-first.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
mkdir -p ./gitea
mkdir -p ./postgres