Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split logs in 'miglog' and container log (syslog) paths #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ initdirs: initcomposevars
mkdir -p ${PERSISTENT_ROOT}/wwwpublic-download
mkdir -p ${PERSISTENT_ROOT}/secrets
mkdir -p ${LOG_ROOT}/miglog
mkdir -p ${LOG_ROOT}/migrid
mkdir -p ${LOG_ROOT}/migrid-io
mkdir -p ${LOG_ROOT}/migrid-openid
mkdir -p ${LOG_ROOT}/migrid-sftp
mkdir -p ${LOG_ROOT}/migrid-webdavs
mkdir -p ${LOG_ROOT}/migrid-ftps
mkdir -p ${LOG_ROOT}/syslog/migrid
mkdir -p ${LOG_ROOT}/syslog/migrid-io
mkdir -p ${LOG_ROOT}/syslog/migrid-openid
mkdir -p ${LOG_ROOT}/syslog/migrid-sftp
mkdir -p ${LOG_ROOT}/syslog/migrid-webdavs
mkdir -p ${LOG_ROOT}/syslog/migrid-ftps

initcomposevars:
@echo "creating env variable map in docker-compose_shared.yml"
Expand Down
10 changes: 5 additions & 5 deletions docker-compose_development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -451,37 +451,37 @@ volumes:
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid
device: ${LOG_ROOT}/syslog/migrid
o: bind

migrid-openid-syslog:
# Volume used for exposing migrid openid container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-openid
device: ${LOG_ROOT}/syslog/migrid-openid
o: bind

migrid-sftp-syslog:
# Volume used for exposing migrid sftp container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-sftp
device: ${LOG_ROOT}/syslog/migrid-sftp
o: bind

migrid-webdavs-syslog:
# Volume used for exposing migrid webdavs container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-webdavs
device: ${LOG_ROOT}/syslog/migrid-webdavs
o: bind

migrid-ftps-syslog:
# Volume used for exposing migrid ftps container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-ftps
device: ${LOG_ROOT}/syslog/migrid-ftps
o: bind
10 changes: 5 additions & 5 deletions docker-compose_development_gdp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -455,37 +455,37 @@ volumes:
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid
device: ${LOG_ROOT}/syslog/migrid
o: bind

migrid-openid-syslog:
# Volume used for exposing migrid openid container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-openid
device: ${LOG_ROOT}/syslog/migrid-openid
o: bind

migrid-sftp-syslog:
# Volume used for exposing migrid sftp container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-sftp
device: ${LOG_ROOT}/syslog/migrid-sftp
o: bind

migrid-webdavs-syslog:
# Volume used for exposing migrid webdavs container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-webdavs
device: ${LOG_ROOT}/syslog/migrid-webdavs
o: bind

migrid-ftps-syslog:
# Volume used for exposing migrid ftps container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-ftps
device: ${LOG_ROOT}/syslog/migrid-ftps
o: bind
10 changes: 5 additions & 5 deletions docker-compose_production_bind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -971,37 +971,37 @@ volumes:
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid
device: ${LOG_ROOT}/syslog/migrid
o: bind

migrid-openid-syslog:
# Volume used for exposing migrid openid container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-openid
device: ${LOG_ROOT}/syslog/migrid-openid
o: bind

migrid-sftp-syslog:
# Volume used for exposing migrid sftp container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-sftp
device: ${LOG_ROOT}/syslog/migrid-sftp
o: bind

migrid-webdavs-syslog:
# Volume used for exposing migrid webdavs container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-webdavs
device: ${LOG_ROOT}/syslog/migrid-webdavs
o: bind

migrid-ftps-syslog:
# Volume used for exposing migrid ftps container system log
driver: local
driver_opts:
type: none
device: ${LOG_ROOT}/migrid-ftps
device: ${LOG_ROOT}/syslog/migrid-ftps
o: bind