Skip to content

Commit

Permalink
Disable elk logging in dev deployment
Browse files Browse the repository at this point in the history
Since the tcp protocol is used, if the elk stack is not deployed, the containers will not start.
  • Loading branch information
ThanKarab committed Nov 1, 2024
1 parent 6cf2c65 commit 15142c5
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ services:
- exareme2_local_monetdb
- exareme2_local_rabbitmq
restart: unless-stopped
logging:
driver: "syslog"
options:
syslog-address: "tcp://localhost:5010"
# logging: # Used for sending logs to ELK
# driver: "syslog"
# options:
# syslog-address: "tcp://localhost:5010"

exareme2_global:
image: madgik/exareme2_worker:${EXAREME2}
Expand Down Expand Up @@ -125,10 +125,10 @@ services:
- exareme2_global_monetdb
- exareme2_global_rabbitmq
restart: unless-stopped
logging:
driver: "syslog"
options:
syslog-address: "tcp://localhost:5010"
# logging: # Used for sending logs to ELK
# driver: "syslog"
# options:
# syslog-address: "tcp://localhost:5010"

exareme2_controller:
image: madgik/exareme2_controller:${EXAREME2}
Expand All @@ -153,10 +153,10 @@ services:
volumes:
- ./config/:/opt/config/
restart: unless-stopped
logging:
driver: "syslog"
options:
syslog-address: "tcp://localhost:5010"
# logging: # Used for sending logs to ELK
# driver: "syslog"
# options:
# syslog-address: "tcp://localhost:5010"

portalbackend_db:
image: postgres:11.20-alpine
Expand Down Expand Up @@ -214,10 +214,10 @@ services:
volumes:
- ./config:/opt/portal/api
restart: unless-stopped
logging:
driver: "syslog"
options:
syslog-address: "tcp://localhost:5010"
# logging: # Used for sending logs to ELK
# driver: "syslog"
# options:
# syslog-address: "tcp://localhost:5010"

gateway-db:
image: postgres
Expand Down

0 comments on commit 15142c5

Please sign in to comment.