Skip to content

Commit

Permalink
Update on-oci-vm.md (#7890)
Browse files Browse the repository at this point in the history
Fixes
- URL fix for Airbyte docker image
- URL fix for Docker compose download
- Text Formatting Fix
  • Loading branch information
shadabshaukat authored Nov 15, 2021
1 parent 5a24ef5 commit f4e3687
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions docs/deploying-airbyte/on-oci-vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,40 @@ ssh -i private-key-file opc@oci-private-instance-ip -p 2200

### Install Docker

```text
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker $USER
```


### Install Docker Compose

sudo wget [https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$\(uname](https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$%28uname) -s\)-$\(uname -m\) -O /usr/local/bin/docker-compose
```text
sudo wget https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m) -O /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
```


### Install Airbyte

```text
mkdir airbyte && cd airbyte
wget [https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,docker-compose.yaml}](https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,docker-compose.yaml})
wget https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,docker-compose.yaml}
which docker-compose
sudo /usr/local/bin/docker-compose up -d
docker-compose up -d
```


## Create SSH Tunnel to Login to the Instance

Expand Down

0 comments on commit f4e3687

Please sign in to comment.