example docker compose fix

This commit is contained in:
ngn 2024-10-06 17:38:07 +03:00
parent 98bd591871
commit f53ccec34c

View File

@ -36,7 +36,7 @@ services:
build: build:
context: ./app context: ./app
environment: environment:
- API_URL: "https://api.ngn.tf" - API_URL="https://api.ngn.tf"
ports: ports:
- "127.0.0.1:7002:3000" - "127.0.0.1:7002:3000"
depends_on: depends_on:
@ -46,8 +46,8 @@ services:
build: build:
context: ./api context: ./api
environment: environment:
- API_PASSWORD: "securepassword" - API_PASSWORD="securepassword"
- API_FRONTEND_URL: "https://ngn.tf" - API_FRONTEND_URL="https://ngn.tf"
ports: ports:
- "127.0.0.1:7001:7001" - "127.0.0.1:7001:7001"
volumes: volumes: