Skip to content

Commit e955578

Browse files
authored
docs: remove <> and use shell for code blocks in azure docs (#9078)
1 parent 40ef9ff commit e955578

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/platforms/azure.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -43,29 +43,29 @@ For this instance, we will run Coder as a system service, however you can run Co
4343

4444
In the Azure VM instance, run the following command to install Coder
4545

46-
```console
47-
curl -fsSL <https://coder.com/install.sh> | sh
46+
```shell
47+
curl -fsSL https://coder.com/install.sh | sh
4848
```
4949

5050
## Run Coder
5151

5252
Run the following command to start Coder as a system level service:
5353

54-
```console
55-
sudo systemctl enable --now coder
54+
```shell
55+
sudo systemctl enable --now coder
5656
```
5757

5858
The following command will get you information about the Coder launch service
5959

60-
```console
61-
journalctl -u coder.service -b
60+
```shell
61+
journalctl -u coder.service -b
6262
```
6363

6464
This will return a series of logs related to running Coder as a system service. Embedded in the logs is the Coder Access URL.
6565

6666
Copy the URL and run the following command to create the first user, either on your local machine or in the instance terminal.
6767

68-
```console
68+
```shell
6969
coder login <url***.try.coder.app>
7070
```
7171

@@ -89,14 +89,14 @@ Coder is running as a system service, which creates the system user `coder` for
8989

9090
Run the following commands to copy the Azure credentials and give the `coder` user access to them:
9191

92-
```console
92+
```shell
9393
sudo cp -r ~/.azure /home/coder/.azure
9494
sudo chown -R coder:coder /home/coder/.azure/
9595
```
9696

9797
Navigate to the `./azure-linux` folder where you created your template and run the following command to put the template on your Coder instance.
9898

99-
```console
99+
```shell
100100
coder templates create
101101
```
102102

0 commit comments

Comments
 (0)