Update formatting for cloudron app install instructions
This commit is contained in:
parent
3e5aaab433
commit
402af703c0
|
|
@ -1,16 +1,25 @@
|
|||
# Log in to Docker
|
||||
# Instructions to build/install custom cloudron application
|
||||
|
||||
### Log in to Docker
|
||||
```
|
||||
sudo docker login
|
||||
<username>
|
||||
<password>
|
||||
```
|
||||
|
||||
# Build the docker image:
|
||||
### Build the docker image
|
||||
```
|
||||
sudo docker build -t <username>/<repository>:<tag> .
|
||||
```
|
||||
|
||||
# Push to Docker
|
||||
### Push to Docker
|
||||
```
|
||||
sudo docker push <repository>:<tag>
|
||||
```
|
||||
|
||||
# Install to Cloudron
|
||||
### Install to Cloudron
|
||||
```
|
||||
cloudron install --image <username>/<repository>:<tag>
|
||||
Location: <enter web address for the app>
|
||||
|
||||
Location: <app.domain.tld>
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue