chore: initial import

这个提交包含在:
Codex
2026-03-06 08:55:47 +08:00
当前提交 acb8a43c5c
修改 16 个文件,包含 2820 行新增0 行删除

43
docker-compose.yml 普通文件
查看文件

@@ -0,0 +1,43 @@
services:
nginx:
image: nginx:1.25-alpine
container_name: android_re_nginx
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- ./html:/usr/share/nginx/html:ro
- ./nginx/conf.d:/etc/nginx/conf.d:ro
- ./certbot/conf:/etc/letsencrypt:ro
- ./certbot/www:/var/www/certbot:ro
depends_on: []
networks:
- web
llm-proxy:
build:
context: ./llm-proxy
container_name: android_re_llm_proxy
restart: unless-stopped
env_file:
- ./.env
networks:
- web
- comingsoon_default
certbot:
image: certbot/certbot:latest
container_name: android_re_certbot
restart: "no"
volumes:
- ./certbot/conf:/etc/letsencrypt
- ./certbot/www:/var/www/certbot
networks:
- web
networks:
web:
driver: bridge
comingsoon_default:
external: true