is ubuntu supported
# replication-ask-ai
r
is ubuntu supported
k
Yes, Ubuntu is supported by Airbyte. The instructions for deploying Airbyte using Docker Compose have been tested on Ubuntu 22.04, among other operating systems. You can install Airbyte on your Ubuntu system by following these steps: 1. Install
Docker Engine
and the
Docker Compose plugin
on your workstation. You can follow the instructions provided [here](https://docs.docker.com/engine/install/). 2. After Docker is installed, you can immediately get started locally by running the following commands:
Copy code
bash # clone Airbyte from GitHub   git clone --depth=1 <https://github.com/airbytehq/airbyte.git>      # switch into Airbyte directory   cd airbyte      # start Airbyte   ./run-ab-platform.sh
3. In your browser, visit http://localhost:8000 4. You will be asked for a username and password. By default, that's username
airbyte
and password
password
. Once you deploy Airbyte to your servers, be sure to change these in your
.env
file:
Copy code
bash # Proxy Configuration   # Set to empty values, e.g. "" to disable basic auth   BASIC_AUTH_USERNAME=your_new_username_here   BASIC_AUTH_PASSWORD=your_new_password_here
5. Start moving some data! You can find more details in the [official documentation](https://docs.airbyte.com/deploying-airbyte/docker-compose).