Hong Zhang
08/24/2022, 5:11 AMairbyte-webapp has been having troubles to bring up and giving errors below. Please feel free to let me know how this can be resolved thanks
2022/08/24 04:56:11 [emerg] 1#1: unknown "is_demo" variable
nginx: [emerg] unknown "is_demo" variable
2022/08/24 04:56:12 [emerg] 1#1: unknown "is_demo" variable
nginx: [emerg] unknown "is_demo" variable
2022/08/24 04:56:12 [emerg] 1#1: unknown "is_demo" variable
nginx: [emerg] unknown "is_demo" variableHarshith (Airbyte)
08/24/2022, 5:48 AMZaza Javakhishvili
08/24/2022, 5:54 AMHarshith (Airbyte)
08/24/2022, 6:05 AM- IS_DEMO=${IS_DEMO:-} this line in the docker-compose for webapp image
webapp:
image: airbyte/webapp:${VERSION}
logging: *default-logging
container_name: airbyte-webapp
restart: unless-stopped
ports:
- 8000:80
environment:
- AIRBYTE_ROLE=${AIRBYTE_ROLE:-}
- AIRBYTE_VERSION=${VERSION}
- API_URL=${API_URL:-}
- IS_DEMO=${IS_DEMO:-}
- FULLSTORY=${FULLSTORY:-}
- INTERNAL_API_HOST=${INTERNAL_API_HOST}
- OPENREPLAY=${OPENREPLAY:-}
- PAPERCUPS_STORYTIME=${PAPERCUPS_STORYTIME:-}
- TRACKING_STRATEGY=${TRACKING_STRATEGY}
will look like this.Lake (Airbyte)
08/24/2022, 6:13 PM