Skip to content

Commit 92d3b67

Browse files
committed
docs: add container name to Docker run commands for MongoDB, PostgreSQL, and SQLite
1 parent eacfa98 commit 92d3b67

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

apps/docs/docs/self-hosting/docker-with-mongo.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ docker run -d --restart=always \
1515
-e DB_USER=peekaping \
1616
-e DB_PASS=secure_test_password_123 \
1717
-v $(pwd)/.data/mongodb:/data/db \
18+
--name peekaping \
1819
0xfurai/peekaping-bundle-mongo:latest
1920
```
2021
To add custom caddy file add

apps/docs/docs/self-hosting/docker-with-postgres.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ docker run -d --restart=always \
1515
-e DB_USER=peekaping \
1616
-e DB_PASS=secure_test_password_123 \
1717
-v $(pwd)/.data/postgres:/var/lib/postgresql/data \
18+
--name peekaping \
1819
0xfurai/peekaping-bundle-postgres:latest
1920
```
2021
To add custom caddy file add

apps/docs/docs/self-hosting/docker-with-sqlite.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ docker run -d --restart=always \
1313
-p 8383:8383 \
1414
-e DB_NAME=/app/data/peekaping.db \
1515
-v $(pwd)/.data/sqlite:/app/data \
16+
--name peekaping \
1617
0xfurai/peekaping-bundle-sqlite:latest
1718
```
1819
To add custom caddy file add

0 commit comments

Comments
 (0)