version: "3.0"
services:
front:
image: ...
build: ./frontend
restart: always
ports:
- "8501:8501"
environment:
- REST_API_URL=http://host.docker.internal:8000
extra_hosts:
- host.docker.internal:host-gateway
docker-compose에서 localhost를 사용하는 컨테이너가 있을 때,
extra_hosts:
- host.docker.internal:host-gateway
를 추가해주고, localhost를 사용하는 부분은 host.docker.internal을 사용해준다.
'mlops, devops' 카테고리의 다른 글
kubeflow를 활용한 모델 운영의 효율화 (0) | 2022.03.19 |
---|---|
컨테이너간 통신 (0) | 2022.03.11 |
python framework 비교 (0) | 2022.02.21 |
nginx proxy_pass에서 host의 ip 사용할 때 (0) | 2022.01.24 |
E: Package 'docker.io' has no installation candidate (0) | 2022.01.20 |