We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35fdb0b commit 486c641Copy full SHA for 486c641
docker-compose.yml
@@ -44,6 +44,8 @@ services:
44
build:
45
context: ./providers/teams
46
dockerfile: Dockerfile
47
+ environment:
48
+ ENDPOINT_PORT: "${ENDPOINT_PORT:?ENDPOINT_PORT}"
49
50
mailer-service:
51
<<: *base-container
providers/teams/lib/apollo.ts
@@ -8,7 +8,7 @@ const cache = new InMemoryCache({
8
})
9
10
const link = createHttpLink({
11
- uri: `http://localhost:${process.env.PORT}/graphql`,
+ uri: `http://localhost:${process.env.ENDPOINT_PORT}/graphql`,
12
headers: {
13
Authorization: 'Bearer ' + cookie.get('token'),
14
},
0 commit comments