You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are not sure about the origin of the issue, or if it impacts your customer experience, please contact [our support team](https://alg.li/support).
16
+
- type: textarea
17
+
attributes:
18
+
label: Description
19
+
description: A clear and concise description of what the bug is.
20
+
validations:
21
+
required: true
22
+
- type: dropdown
23
+
id: python version
24
+
attributes:
25
+
label: python version
26
+
description: What is the Python version you've reproduced the error with
27
+
options:
28
+
- 3.8
29
+
- 3.9
30
+
- 3.10
31
+
- 3.11
32
+
- 3.12
33
+
- 3.13
34
+
validations:
35
+
required: true
36
+
- type: dropdown
37
+
id: django version
38
+
attributes:
39
+
label: Django version
40
+
description: What is the Django version you've reproduced the error with
41
+
options:
42
+
- 4.0
43
+
- 4.1
44
+
- 4.2
45
+
- 5.0
46
+
- 5.1
47
+
validations:
48
+
required: true
49
+
- type: textarea
50
+
attributes:
51
+
label: Steps to reproduce
52
+
description: Write down the steps to reproduce the bug, please include any information that seems relevant for us to reproduce it properly
53
+
placeholder: |
54
+
1. Use method `...`
55
+
2. With parameters `...`
56
+
3. See error
57
+
validations:
58
+
required: true
59
+
- type: textarea
60
+
id: logs
61
+
attributes:
62
+
label: Relevant log output
63
+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
64
+
render: shell
65
+
- type: checkboxes
66
+
attributes:
67
+
label: Self-service
68
+
description: |
69
+
If you feel like you could contribute to this issue, please check the box below. This would tell us and other people looking for contributions that someone's working on it.
70
+
If you do check this box, please send a pull request within 7 days so we can still delegate this to someone else.
In this page you will find our recommended way of installing Docker on your machine.
2
-
This guide is made for OSX users.
3
-
4
-
## Install Docker
5
-
6
-
First install Docker using [Homebrew](https://brew.sh/)
7
-
```
8
-
$ brew install docker
9
-
```
10
-
11
-
You can then install [Docker Desktop](https://docs.docker.com/get-docker/) if you wish, or use `docker-machine`. As we prefer the second option, we will only document this one.
12
-
13
-
## Setup your Docker
14
-
15
-
Install `docker-machine`
16
-
```
17
-
$ brew install docker-machine
18
-
```
19
-
20
-
Then install [VirtualBox](https://www.virtualbox.org/) with [Homebrew Cask](https://github.com/Homebrew/homebrew-cask) to get a driver for your Docker machine
21
-
```
22
-
$ brew cask install virtualbox
23
-
```
24
-
25
-
You may need to enter your password and authorize the application in your `System Settings` > `Security & Privacy`.
26
-
27
-
Create now a new machine, set it up as default and connect your shell to it (here we use zsh. The commands should anyway be displayed in each steps' output)
However, we advise you to export them. That way, you can use [Docker's shorten syntax](https://docs.docker.com/engine/reference/commandline/run/#set-environment-variables--e---env---env-file) to set your variables.
0 commit comments