diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..24f9f8d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.env +data/ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..cf7e6c0 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,30 @@ +version: "3" +services: + postgres: + image: postgres:13 + environment: + - POSTGRES_USER=gitea + - POSTGRES_PASSWORD + - POSTGRES_DB=giteadb + volumes: + - ./data/postgres:/var/lib/postgresql/data/ + - ./data/progs:/progs + restart: always + healthcheck: + test: pg_isready -U gitea -d giteadb + interval: 10s + timeout: 5s + retries: 5 + + gitea: + image: gitea/gitea:1.15 + restart: always + volumes: + - ./data/gitea:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + ports: + - 127.0.0.1:81:3000 + - 22:2222 + depends_on: + - postgres