HI i have kratos running in docker-compose and ne...
# talk-kratos
m
HI i have kratos running in docker-compose and next app running locally and with this command
ORY_SDK_URL=<http://localhost:4455/>
next communicate with docker version of kratos which we want but when i dockerize the next app and put it in sperate docker compose file and set the environment variable in docker compose file of next so it can communicate with docker version of kratos but it does not communicate, This is what is get in logs of next
version: '3.5' services: # nodeserver: # build: # context: ../nodeExpressGateway # dockerfile: Dockerfile # ports: # - "5000:5000" # networks: # - my-proxy-net nextnlpui: build: context: ../nextnlpui dockerfile: Dockerfile ports: - "3000:3000" environment: - ORY_SDK_URL=http://localhost:4455/ networks: - my-proxy-net # spacynlp: # build: # context: '../spacydeploy' # dockerfile: Dockerfile # ports: # - "8090:8090" # networks: # - my-proxy-net networks: my-proxy-net: external: name: custom_network
next docker compose file