26 lines
399 B
Markdown
26 lines
399 B
Markdown
# Instructions to build/install custom cloudron application
|
|
|
|
### Log in to Docker
|
|
```
|
|
sudo docker login
|
|
<username>
|
|
<password>
|
|
```
|
|
|
|
### Build the docker image
|
|
```
|
|
sudo docker build -t <username>/<repository>:<tag> .
|
|
```
|
|
|
|
### Push to Docker
|
|
```
|
|
sudo docker push <repository>:<tag>
|
|
```
|
|
|
|
### Install to Cloudron
|
|
```
|
|
cloudron install --image <username>/<repository>:<tag>
|
|
Location: <app.domain.tld>
|
|
```
|
|
|