From 3545e833efc1ef0fe03ae6a39795e923967e5528 Mon Sep 17 00:00:00 2001 From: Otho Ulrich Date: Fri, 8 Jul 2022 01:44:18 -0400 Subject: [PATCH] Initialize on docker-compose with gitea. --- docker-compose.yml | 88 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3491538 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,88 @@ +version: '3.6' + +volumes: + certs: + acme: + html: + +networks: + proxy: + gitea: + external: false + +services: + gitea: + image: gitea/gitea:latest + 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 + - VIRTUAL_HOST=www.othoulrich.com,othoulrich.com + - VIRTUAL_DEST=/code + - VIRTUAL_PORT=3000 + - LETSENCRYPT_HOST=www.othoulrich.com,othoulrich.com + restart: always + networks: + - gitea + - proxy + volumes: + - ./.data/gitea:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + ports: + - "922:22" + depends_on: + - gitea-db + + gitea-db: + image: postgres:14 + container_name: gitea-db + restart: always + environment: + - POSTGRES_USER=gitea + - POSTGRES_PASSWORD=gitea + - POSTGRES_DB=gitea + networks: + - gitea + volumes: + - ./.data/gitea-db:/var/lib/postgresql/data + +####################################3 +## nginx proxy + + nginx-proxy: + image: nginxproxy/nginx-proxy + container_name: nginx-proxy + restart: always + ports: + - 80:80 + - 443:443 + labels: + com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true" + volumes: + - certs:/etc/nginx/certs:ro + - ./vhost.d:/etc/nginx/vhost.d + - html:/usr/share/nginx/html + - /var/run/docker.sock:/tmp/docker.sock:ro + networks: + - proxy + + letsencrypt-companion: + image: nginxproxy/acme-companion + container_name: acme-companion + restart: always + volumes: + - certs:/etc/nginx/certs + - acme:/etc/acme.sh + - ./vhost.d:/etc/nginx/vhost.d + - html:/usr/share/nginx/html + - /var/run/docker.sock:/var/run/docker.sock:ro + networks: + - proxy + depends_on: + - nginx-proxy