Skip to content

Commit cd2d679

Browse files
committed
Bot Updating Templated Files
1 parent 4055599 commit cd2d679

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,30 @@ Please report any issues with the container [here](https://github.com/imagegeniu
3939

4040
**You will need to create a PostgreSQL 14 and Redis container to use with Immich**
4141

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+
4266
## Usage
4367

4468
Here are some example snippets to help you get started creating a container.

0 commit comments

Comments
 (0)