Guys, I’ve installed the Airbyte inside a EC2. How...
# ask-community-for-troubleshooting
m
Guys, I’ve installed the Airbyte inside a EC2. How can i access the files to modificate the .dev file ? is it possible ? I can’t find the folders.
1
j
Are you using docker-compose for this?
m
yes, I just followed the tutorial. I’am trying to put a login authentication inside Airbyte code, have you already did it ? do you know a easier way to do this ?
j
If you use docker-compose, it will look for a .env file, which you should be able to modify. If you ssh into your instance and modify that file, do a
docker-compose down
and
docker-compose up
it should pick up the new values
1
If you can do a
docker ps
to get the container id or name, and then run a
docker inspect <id>
you should be able to see if its setting the env vars correctly. It should be under a “Config” -> “Env” section in the docker inspect output
❤️ 1
m
Thanks, helped alot!
👍 1