hi all, not sure if this is the channel to post a ...
# replication-troubleshooting
h
hi all, not sure if this is the channel to post a question. I just get started today with airbyte and managed to get it setup from my local machine. However, one of the container
airbyte-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
Copy code
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" variable
h
Hey when you say local machine, could you help me understand the deployment method you have used? Is it docker (docker-compose up)?
z
@Harshith (Airbyte) docker-compose up https://github.com/airbytehq/airbyte/issues/15915
h
Gotcha. Sorry for the inconvenience. We are in process of removing certain feature/functionality. Ideally this won't happen once we launch a new version which is pending. To get a temporary fix you can add
- IS_DEMO=${IS_DEMO:-}
this line in the docker-compose for webapp image
Copy code
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.
l
This issue has been resolved in the airbyte master branch! Sorry again for the inconvenience that this caused