fix(proxy): disable proxy service
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
services:
|
||||
proxy:
|
||||
build:
|
||||
context: ../proxy
|
||||
dockerfile: Dockerfile
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "8085"
|
||||
volumes:
|
||||
- ../proxy/config.json:/app/config.json:ro
|
||||
- ../proxy/ca:/app/ca
|
||||
environment:
|
||||
PYTHONUNBUFFERED: "1"
|
||||
PROXY_HOST: "0.0.0.0"
|
||||
PROXY_PORT: "8085"
|
||||
# proxy:
|
||||
# build:
|
||||
# context: ../proxy
|
||||
# dockerfile: Dockerfile
|
||||
# restart: unless-stopped
|
||||
# expose:
|
||||
# - "8085"
|
||||
# volumes:
|
||||
# - ../proxy/config.json:/app/config.json:ro
|
||||
# - ../proxy/ca:/app/ca
|
||||
# environment:
|
||||
# PYTHONUNBUFFERED: "1"
|
||||
# PROXY_HOST: "0.0.0.0"
|
||||
# PROXY_PORT: "8085"
|
||||
|
||||
db:
|
||||
image: postgres:18-alpine
|
||||
@@ -64,15 +64,15 @@ services:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_started
|
||||
proxy:
|
||||
condition: service_started
|
||||
environment:
|
||||
HTTP_PROXY: "http://proxy:8085"
|
||||
HTTPS_PROXY: "http://proxy:8085"
|
||||
http_proxy: "http://proxy:8085"
|
||||
https_proxy: "http://proxy:8085"
|
||||
NO_PROXY: "localhost,127.0.0.1,db,redis,proxy"
|
||||
no_proxy: "localhost,127.0.0.1,db,redis,proxy"
|
||||
# proxy:
|
||||
# condition: service_started
|
||||
# environment:
|
||||
# HTTP_PROXY: "http://proxy:8085"
|
||||
# HTTPS_PROXY: "http://proxy:8085"
|
||||
# http_proxy: "http://proxy:8085"
|
||||
# https_proxy: "http://proxy:8085"
|
||||
# NO_PROXY: "localhost,127.0.0.1,db,redis,proxy"
|
||||
# no_proxy: "localhost,127.0.0.1,db,redis,proxy"
|
||||
|
||||
celery:
|
||||
build:
|
||||
|
||||
Reference in New Issue
Block a user