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
Copy file name to clipboardExpand all lines: 15/umbraco-cms/fundamentals/setup/server-setup/running-umbraco-in-docker.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Similarly, you shouldn't use InMemory modelsbuilder, since that also relies on c
25
25
### Logs
26
26
27
27
Umbraco writes logs to the `/umbraco/Logs/` directory. Due to the performance implications of writing to a writable layer,
28
-
and the limited size of the writable layer, it is recommended to mount a volume to this directory.
28
+
and the limited size, it is recommended to mount a volume to this directory.
29
29
30
30
### Data
31
31
@@ -36,17 +36,17 @@ The `/umbraco/Data/` directory is used to store temporary files, such as file up
36
36
Similarly to logs, it's recommended to not store media in the writable layer, both for performance reasons,
37
37
but also for practical development reasons. You likely want to persist media files between containers.
38
38
39
-
One possible solution here is to again use bind mounts, however the ideal solution is store the media and ImageSharp cache externally,
39
+
One possible solution here is to again use bind mounts. The ideal solution is store the media and ImageSharp cache externally,
40
40
for more information on this, refer to the [Azure Blob Storage documentation](https://docs.umbraco.com/umbraco-cms/extending/filesystemproviders/azure-blob-storage).
41
41
42
42
### Required files
43
43
44
-
If your solution requires some files to run, for instance license files, you need to pass these files into the container at build time, or mount them externally.
44
+
If your solution requires some files to run, for instance license files. You need to pass these files into the container at build time, or mount them externally.
45
45
46
46
## HTTPS
47
47
48
48
When running in websites in Docker, it's common to use do so behind a reverse proxy, or load balancers.
49
-
In these scenarios you're likely to handle SSL termination at the reverse proxy, this means that Umbraco will not be aware of the SSL termination, and will likely complain about not using HTTPS.
49
+
In these scenarios you're likely to handle SSL termination at the reverse proxy. This means that Umbraco will not be aware of the SSL termination, and will likely complain about not using HTTPS.
0 commit comments