44 行
887 B
YAML
44 行
887 B
YAML
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
|