adding right path for the db
This commit is contained in:
parent
f8b238e2d2
commit
2ea4432795
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ docker run -d \
|
||||||
--TOKEN_REDDIT_USER_AGENT="yourRedditUserAgent" \
|
--TOKEN_REDDIT_USER_AGENT="yourRedditUserAgent" \
|
||||||
--TIMEZONE="yourTimezone" \
|
--TIMEZONE="yourTimezone" \
|
||||||
--PREFIX="yourPrefix" \
|
--PREFIX="yourPrefix" \
|
||||||
-v /here/your/path/:/db \
|
-v /here/your/path/:/opt/db \
|
||||||
--network="default" \
|
--network="default" \
|
||||||
--restart=unless-stopped
|
--restart=unless-stopped
|
||||||
```
|
```
|
||||||
|
|
|
@ -12,7 +12,7 @@ services:
|
||||||
- TIMEZONE=yourTimezone # More info here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
- TIMEZONE=yourTimezone # More info here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||||
- PREFIX=yourPrefix
|
- PREFIX=yourPrefix
|
||||||
volumes:
|
volumes:
|
||||||
- /here/your/path/:/db
|
- /here/your/path/:/opt/db
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|
Reference in a new issue