Joey Hafner
97e4cc547a
1. homelab [Gitea](https://gitea.jafner.tools/Jafner/homelab), [Github (docker_config)](https://github.com/Jafner/docker_config), [Github (wiki)](https://github.com/Jafner/wiki), [Github (cloud_tools)](https://github.com/Jafner/cloud_tools), [Github (self-hosting)](https://github.com/Jafner/self-hosting). - Rename? Jafner.net? Wouldn't that be `Jafner/Jafner.net/Jafner.net`? 2. Jafner.dev [Github](https://github.com/Jafner/Jafner.dev). 3. dotfiles [Gitea](https://gitea.jafner.tools/Jafner/dotfiles), [Github](https://github.com/Jafner/dotfiles). 4. nvgm [Gitea](https://gitea.jafner.tools/Jafner/nvgm) 5. pamidi [Gitea](https://gitea.jafner.tools/Jafner/pamidi), [Github](https://github.com/Jafner/pamidi) 6. docker-llm-amd [Gitea](https://gitea.jafner.tools/Jafner/docker-llm-amd) 7. doradash [Gitea](https://gitea.jafner.tools/Jafner/doradash) 8. clip-it-and-ship-it [Gitea (PyClipIt)](https://gitea.jafner.tools/Jafner/PyClipIt), [Github](https://github.com/Jafner/clip-it-and-ship-it). 9. razer battery led [Github](https://github.com/Jafner/Razer-BatteryLevelRGB) 10. 5etools-docker [Github](https://github.com/Jafner/5etools-docker) 11. jafner-homebrew [Github](https://github.com/Jafner/jafner-homebrew)
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
version: '3.9'
|
|
services:
|
|
gitea:
|
|
image: gitea/gitea:1.21.0
|
|
container_name: gitea_gitea
|
|
env_file:
|
|
- path: ./gitea.env
|
|
required: true
|
|
restart: always
|
|
networks:
|
|
- web
|
|
- gitea
|
|
volumes:
|
|
- $DOCKER_DATA/gitea:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "2225:22"
|
|
labels:
|
|
- traefik.http.routers.gitea.rule=Host(`gitea.jafner.tools`)
|
|
- traefik.http.routers.gitea.tls.certresolver=lets-encrypt
|
|
- traefik.http.routers.gitea.tls.options=tls12@file
|
|
- traefik.http.routers.gitea.middlewares=securityheaders@file
|
|
- traefik.http.routers.gitea.service=gitea
|
|
- traefik.http.services.gitea.loadbalancer.server.port=3000
|
|
|
|
postgres:
|
|
image: postgres:13
|
|
container_name: gitea_postgres
|
|
networks:
|
|
- gitea
|
|
env_file:
|
|
- path: ./postgres_secrets.env
|
|
required: false
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
runner-ubuntu:
|
|
image: gitea/act_runner:latest
|
|
container_name: gitea_runner-ubuntu
|
|
depends_on:
|
|
- gitea
|
|
env_file:
|
|
- path: ./runner-ubuntu.env
|
|
required: true
|
|
- path: ./runner_secrets.env
|
|
required: false
|
|
networks:
|
|
- gitea
|
|
volumes:
|
|
- ./runner_ubuntu_config.yaml:/config.yaml
|
|
- $DOCKER_DATA/runner-ubuntu:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
networks:
|
|
web:
|
|
external: true
|
|
gitea:
|
|
|
|
volumes:
|
|
postgres_data: |