Update formatting for cloudron app install instructions

This commit is contained in:
Anthony Hughes 2024-03-22 15:32:54 +00:00
parent 3e5aaab433
commit 402af703c0
1 changed files with 15 additions and 6 deletions

View File

@ -1,16 +1,25 @@
# Log in to Docker # Instructions to build/install custom cloudron application
### Log in to Docker
```
sudo docker login sudo docker login
<username> <username>
<password> <password>
```
# Build the docker image: ### Build the docker image
```
sudo docker build -t <username>/<repository>:<tag> . sudo docker build -t <username>/<repository>:<tag> .
```
# Push to Docker ### Push to Docker
```
sudo docker push <repository>:<tag> sudo docker push <repository>:<tag>
```
# Install to Cloudron ### Install to Cloudron
```
cloudron install --image <username>/<repository>:<tag> cloudron install --image <username>/<repository>:<tag>
Location: <enter web address for the app> Location: <app.domain.tld>
```