File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,30 @@ Please report any issues with the container [here](https://github.com/imagegeniu
39
39
40
40
** You will need to create a PostgreSQL 14 and Redis container to use with Immich**
41
41
42
+ ### You can use these commands as a place to start a Redis and PostgreSQL container.
43
+
44
+ Redis:
45
+
46
+ ``` bash
47
+ docker run -d \
48
+ --name=redis \
49
+ -p 6379:6379 \
50
+ redis
51
+ ```
52
+
53
+ PostgreSQL 14:
54
+
55
+ ``` bash
56
+ docker run -d \
57
+ --name=postgres14 \
58
+ -e POSTGRES_USER=postgres \
59
+ -e POSTGRES_PASSWORD=postgres \
60
+ -e POSTGRES_DB=immich \
61
+ -v path_to_postgres:/var/lib/postgresql/data \
62
+ -p 5432:5432 \
63
+ postgres:14
64
+ ```
65
+
42
66
## Usage
43
67
44
68
Here are some example snippets to help you get started creating a container.
You can’t perform that action at this time.
0 commit comments