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