We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bccb500 commit 81838d9Copy full SHA for 81838d9
.gitignore
@@ -37,5 +37,8 @@ build/
37
### Mac OS ###
38
.DS_Store
39
40
+### Environment ###
41
+prod.env
42
+
43
### Other ###
44
notes.md
dev.env
@@ -0,0 +1,2 @@
1
+BASE_URL=localhost
2
+BASE_URL_PORT=7001
docker-compose.yaml
@@ -34,8 +34,8 @@ services:
34
build:
35
context: .
36
args:
- BASE_URL: "localhost"
- BASE_URL_PORT: "7001"
+ BASE_URL: $BASE_URL
+ BASE_URL_PORT: $BASE_URL_PORT
dockerfile: ./microservices/playground-ws/Dockerfile
ports:
- "7001:7001"
0 commit comments