Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit 1cf06b1

Browse files
committed
Docs: Add link to discussionon stdout redirection, from @bnmnetp.
1 parent 7ec2446 commit 1cf06b1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docker/docker_tools_misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _start_servers(dev: bool) -> None:
8989
'sudo -u www-data env "PATH=$PATH" "REDIS_URI=$REDIS_URI" '
9090
"poetry run celery --app=scheduled_builder worker --pool=threads "
9191
"--concurrency=3 --loglevel=info "
92-
# This redirect ensures output ends up in the Docker log even if the servers are restarted. Sending to ``/dev/stdout`` only works at initial startup, but doesn't redirect after the servers are restarted.
92+
# This redirect ensures output ends up in the Docker log even if the servers are restarted. Sending to ``/dev/stdout`` only works at initial startup, but doesn't redirect after the servers are restarted. For more discussion, see `Github <https://github.com/moby/moby/issues/19616#issuecomment-174355979>`_.
9393
"--logfile=/proc/1/fd/1 &",
9494
cwd=f"{env.RUNESTONE_PATH}/modules",
9595
)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ pathlib2 = "^2.0.0"
3636
Paver = ">= 1.2.4"
3737
# This is actually an rsmanage dependency. It's here so that rsmanage can be installed without installing this, which requires Postgres (available only in the container).
3838
pgcli = "^3.0.0"
39+
pretextbook = "^0.7"
3940
psycopg2-binary = "^2.0.0"
4041
pylint = ">= 1.2.1"
4142
python = "^3.8"

0 commit comments

Comments
 (0)