industry-website/docker-compose.yml

111 lines
2.8 KiB
YAML
Raw Normal View History

version: '3.6'
volumes:
certs:
acme:
html:
networks:
proxy:
gitea:
external: false
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
2022-07-09 04:42:38 +00:00
restart: always
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
2022-07-17 02:05:41 +00:00
- GITEA__git__HOME_PATH=/data/git
- GITEA__repository.ENABLE_PUSH_CREATE_USER=true
- GITEA__repository.ENABLE_PUSH_CREATE_ORG=true
- GITEA__repository.signing__DEFAULT_TRUST_MODEL=collaborator
2022-07-17 03:10:33 +00:00
- GITEA__repository.signing__SIGNING_KEY=013E4D2815379A35
- GITEA__repository.signing__SIGNING_NAME=Gitea
- GITEA__repository.signing__SIGNING_EMAIL=gitea@othoulrich.com
- GITEA__repository.signing__INITIAL_COMMIT=pubkey
- GITEA__repository.signing__WIKI=pubkey
- GITEA__repository.signing__CRUD_ACTIONS=pubkey
- GITEA__repository.signing__MERGES=pubkey,commitssigned
2022-07-09 02:36:54 +00:00
- VIRTUAL_HOST=code.othoulrich.com
- VIRTUAL_PORT=3000
2022-07-09 02:36:54 +00:00
- LETSENCRYPT_HOST=code.othoulrich.com
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
2022-07-09 04:13:07 +00:00
apache:
image: httpd:2.4
container_name: apache
restart: always
environment:
- VIRTUAL_HOST=www.othoulrich.com,othoulrich.com
- LETSENCRYPT_HOST=www.othoulrich.com,othoulrich.com
2022-07-09 04:13:07 +00:00
networks:
- proxy
volumes:
2022-07-16 06:23:20 +00:00
- ./htdocs:/usr/local/apache2/htdocs
2022-07-09 02:36:54 +00:00
####################################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
2022-07-16 06:23:35 +00:00
- ./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
2022-07-16 06:23:35 +00:00
- ./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