-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from ultravioletrs/deploy
NOISSUE - Deploy Vault UI
- Loading branch information
Showing
4 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Cloud Init | ||
|
||
This directory contains the cloud-init configuration files for Vault AI. | ||
|
||
## After the first boot | ||
|
||
1. Generate access token from github to be able to pull the docker images and code from github | ||
2. Login to the docker registry | ||
|
||
```bash | ||
docker login ghcr.io | ||
``` | ||
|
||
Your username is your github username and your password is the access token you generated in step 1. | ||
|
||
3. Clone the repository | ||
|
||
```bash | ||
git clone https://github.com/ultravioletrs/vault.git | ||
``` | ||
|
||
Your username is your github username and your password is the access token you generated in step 1. | ||
|
||
4. Pull the docker images | ||
|
||
```bash | ||
cd vault | ||
docker compose pull | ||
``` | ||
|
||
5. Start the docker containers | ||
|
||
```bash | ||
docker compose up -d | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters