Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Commit

Permalink
Revert "#229 mount var/log as read-write"
Browse files Browse the repository at this point in the history
This reverts commit 9103ef5.
  • Loading branch information
apfeiffer85 committed May 24, 2016
1 parent 9103ef5 commit d7d59e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/opt/taupage/runtime/Docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ def get_volume_options(config: dict):
yield '-v'
yield '/opt/proprietary/newrelic:/agents/newrelic:rw'

# mount logdirectory as read-write in order to write custom log files
# mount logdirectory as read-only
if config.get('mount_var_log'):
yield '-v'
yield '/var/log:/var/log'
yield '/var/log:/var/log:ro'

# mount certs dir as read-only. 'private' is currently empty on Taupage
if config.get('mount_certs'):
Expand Down

0 comments on commit d7d59e5

Please sign in to comment.