Skip to content

Commit 486c641

Browse files
committed
Expose port.
1 parent 35fdb0b commit 486c641

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ services:
4444
build:
4545
context: ./providers/teams
4646
dockerfile: Dockerfile
47+
environment:
48+
ENDPOINT_PORT: "${ENDPOINT_PORT:?ENDPOINT_PORT}"
4749

4850
mailer-service:
4951
<<: *base-container

providers/teams/lib/apollo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const cache = new InMemoryCache({
88
})
99

1010
const link = createHttpLink({
11-
uri: `http://localhost:${process.env.PORT}/graphql`,
11+
uri: `http://localhost:${process.env.ENDPOINT_PORT}/graphql`,
1212
headers: {
1313
Authorization: 'Bearer ' + cookie.get('token'),
1414
},

0 commit comments

Comments
 (0)