Skip to content

Commit 805e40d

Browse files
committed
fix broken worker container build
1 parent 1121c2c commit 805e40d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

doc/TODO.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@
7171

7272
## Improvements
7373

74+
- add TOC to readme.md (see how it's done at fe. https://raw.githubusercontent.com/phpredis/phpredis/develop/README.markdown)
75+
7476
- improve handling output of 'select' queries
7577
+ test selecting a string with a | character in it =>
7678
+ no client quotes it: to reliably parse columns we have to rely on tabular format, ie. measure header width...

doc/WHATSNEW.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ Version ??? (unreleased)
1313

1414
- Improved: dbconsole commands options `only-instances` and `except-instances` can now be repeated multiple times
1515

16+
- Improved: dbstack command: `cleanup` learned argument `shared-data`
17+
1618
- Improved: dbstack commands `run` and `shell` learned option `-r` to run as root
1719

18-
- Improved: dbstack script learned new command: `rootshell`
1920

2021
Version 0.10
2122
------------

docker/images/worker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ RUN apt-get -y install redis-tools
9696
# @todo add suport for igbinary serialization
9797
RUN yes '' | pecl install redis
9898
RUN echo "extension=redis.so" > /etc/php/7.3/mods-available/redis.ini
99-
RUN ln -s /etc/php/7.3/cli/conf.d/90-redis.ini /etc/php/7.3/mods-available/redis.ini
99+
RUN ln -s /etc/php/7.3/mods-available/redis.ini /etc/php/7.3/cli/conf.d/90-redis.ini
100100

101101
# Local user
102102
# ------------------------------------------------------------------------------

0 commit comments

Comments
 (0)