Skip to content
This repository was archived by the owner on Apr 9, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/content/en/starting-from-scratch/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ $ azk shell --image azukiapp/node --shell /bin/bash
# exit
```

> Note: If you're on Linux, you have to fix the ownership of the resulting folder. This is because the container run as root user, so that all created files and folder own to the root user. To do this fix, just run:

```sh
$ sudo chown -R `id -un`:`id -gn` .
```

### Creating the Azkfile.js

```sh
Expand Down
8 changes: 7 additions & 1 deletion docs/content/en/starting-from-scratch/php-cakephp.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@

```sh
$ azk shell --image azukiapp/php-fpm --shell /bin/bash
# composer create-project cakephp/app my-cake-php --prefer-dist
# composer create-project cakephp/app <my-app> --prefer-dist
# exit
```

> Note: If you're on Linux, you have to fix the ownership of the resulting folder. This is because the container run as root user, so that all created files and folder own to the root user. To do this fix, just run:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Creating the Azkfile.js

```sh
Expand Down
8 changes: 7 additions & 1 deletion docs/content/en/starting-from-scratch/php-laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@

```sh
$ azk shell --image azukiapp/php-fpm --shell /bin/bash
# composer create-project laravel/laravel my-app --prefer-dist
# composer create-project laravel/laravel <my-app> --prefer-dist
# exit
```

> Note: If you're on Linux, you have to fix the ownership of the resulting folder. This is because the container run as root user, so that all created files and folder own to the root user. To do this fix, just run:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Creating the Azkfile.js

```sh
Expand Down
6 changes: 6 additions & 0 deletions docs/content/en/starting-from-scratch/python-django.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ $ azk shell --image azukiapp/python --shell /bin/bash
# exit
```

> Note: If you're on Linux, you have to fix the ownership of the resulting folder. This is because the container run as root user, so that all created files and folder own to the root user. To do this fix, just run:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Creating the Azkfile.js

```sh
Expand Down
6 changes: 6 additions & 0 deletions docs/content/en/starting-from-scratch/ruby-rails.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ $ azk shell --image azukiapp/ruby --shell /bin/bash
# exit
```

> Note: If you're on Linux, you have to fix the ownership of the resulting folder. This is because the container run as root user, so that all created files and folder own to the root user. To do this fix, just run:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Creating the Azkfile.js

```sh
Expand Down
6 changes: 6 additions & 0 deletions docs/content/pt-BR/starting-from-scratch/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ $ azk shell --image azukiapp/node --shell /bin/bash
# exit
```

> Nota: Se você estiver usando Linux, você terá que transferir a propriedade da pasta gerada para seu usuário. Isso acontece pois o container é executado como usuário root, portanto todos os arquivos e pastas gerados dentro do container pertencem ao usuário root. Para fazer esta correção, basta executar:

```sh
$ sudo chown -R `id -un`:`id -gn` .
```

### Gerando o Azkfile.js

```sh
Expand Down
8 changes: 7 additions & 1 deletion docs/content/pt-BR/starting-from-scratch/php-cakephp.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@

```sh
$ azk shell --image azukiapp/php-fpm --shell /bin/bash
# composer create-project cakephp/app my-app --prefer-dist
# composer create-project cakephp/app <my-app> --prefer-dist
# exit
```

> Nota: Se você estiver usando Linux, você terá que transferir a propriedade da pasta gerada para seu usuário. Isso acontece pois o container é executado como usuário root, portanto todos os arquivos e pastas gerados dentro do container pertencem ao usuário root. Para fazer esta correção, basta executar:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Gerando o Azkfile.js

```sh
Expand Down
9 changes: 8 additions & 1 deletion docs/content/pt-BR/starting-from-scratch/php-laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@

```sh
$ azk shell --image azukiapp/php-fpm --shell /bin/bash
# composer create-project laravel/laravel my-app --prefer-dist
# composer create-project laravel/laravel <my-app> --prefer-dist
# exit
```

> Nota: Se você estiver usando Linux, você terá que transferir a propriedade da pasta gerada para seu usuário. Isso acontece pois o container é executado como usuário root, portanto todos os arquivos e pastas gerados dentro do container pertencem ao usuário root. Para fazer esta correção, basta executar:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```


### Gerando o Azkfile.js

```sh
Expand Down
6 changes: 6 additions & 0 deletions docs/content/pt-BR/starting-from-scratch/python-django.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ $ azk shell --image azukiapp/python --shell /bin/bash
# exit
```

> Nota: Se você estiver usando Linux, você terá que transferir a propriedade da pasta gerada para seu usuário. Isso acontece pois o container é executado como usuário root, portanto todos os arquivos e pastas gerados dentro do container pertencem ao usuário root. Para fazer esta correção, basta executar:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Gerando o Azkfile.js

```sh
Expand Down
6 changes: 6 additions & 0 deletions docs/content/pt-BR/starting-from-scratch/ruby-rails.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ $ azk shell --image azukiapp/ruby --shell /bin/bash
# exit
```

> Nota: Se você estiver usando Linux, você terá que transferir a propriedade da pasta gerada para seu usuário. Isso acontece pois o container é executado como usuário root, portanto todos os arquivos e pastas gerados dentro do container pertencem ao usuário root. Para fazer esta correção, basta executar:

```sh
$ sudo chown -R `id -un`:`id -gn` <my-app>
```

### Gerando o Azkfile.js

```sh
Expand Down