We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8553b96 commit f7e36e1Copy full SHA for f7e36e1
.env-files/auth-service.env
@@ -0,0 +1 @@
1
+PORT=80
docker-compose.yml
@@ -0,0 +1,24 @@
+version: '0.1'
2
+
3
+services:
4
+ auth-service:
5
+ container_name: auth-service
6
+ restart: always
7
+ build:
8
+ context: ./auth-service
9
+ dockerfile: Dockerfile
10
+ env_file:
11
+ - ./.env-files/auth-service.env
12
13
+ application-gateway-service:
14
+ container_name: application-gateway-service
15
16
17
+ context: ./application-gateway-service
18
19
+ external_links:
20
+ - auth-service
21
+ depends_on:
22
23
+ ports:
24
+ - 80:80
0 commit comments