Allow docker image to work off of environment variables instead of hardcoded on build
This commit is contained in:
@ -4,9 +4,10 @@ services:
|
||||
build:
|
||||
context: "../"
|
||||
dockerfile: ./docker/Dockerfile
|
||||
args :
|
||||
- VITE_BACKEND_DOMAIN=localhost:7000
|
||||
- VITE_INSTANCE_DOMAIN=localhost:80
|
||||
- VITE_HTTPS=false
|
||||
ports:
|
||||
- "8080:80"
|
||||
- "8080:80"
|
||||
environment:
|
||||
- VITE_BACKEND_DOMAIN=localhost:7000
|
||||
- VITE_INSTANCE_DOMAIN=localhost:80
|
||||
- VITE_HTTPS=false
|
||||
|
||||
|
Reference in New Issue
Block a user