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

Update docker-compose.yml to reduce excessively large logs #1

Merged
merged 1 commit into from
Aug 4, 2024
Merged
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
28 changes: 27 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ services:
healthcheck:
test: [CMD, stat, /testbed/dist/.master-ready]
interval: 3s
logging:
driver: local

caddy:
image: ghcr.io/named-data/testbed-caddy:20240512
Expand All @@ -38,6 +40,8 @@ services:
restart: unless-stopped
depends_on:
master: { condition: service_healthy }
logging:
driver: local

nfd:
image: ghcr.io/named-data/nfd:20240420
Expand All @@ -54,9 +58,11 @@ services:
restart: unless-stopped
healthcheck:
test: [CMD, nfdc, status]
interval: 5s
interval: 30s
Pesa marked this conversation as resolved.
Show resolved Hide resolved
depends_on:
master: { condition: service_healthy }
logging:
driver: local

nfd-http-status-server:
image: ghcr.io/named-data/nfd-status-http-server:20240420
Expand All @@ -66,6 +72,8 @@ services:
restart: unless-stopped
depends_on:
nfd: { condition: service_healthy }
logging:
driver: local

ndnpingserver:
image: ghcr.io/named-data/ndn-tools:20240505
Expand All @@ -79,6 +87,8 @@ services:
restart: unless-stopped
depends_on:
nfd: { condition: service_healthy }
logging:
driver: local

serve-certs:
image: ghcr.io/yoursunny/ndn6-tools:20240505
Expand All @@ -92,6 +102,8 @@ services:
restart: unless-stopped
depends_on:
nfd: { condition: service_healthy }
logging:
driver: local

nlsr:
image: ghcr.io/named-data/nlsr:20240508
Expand All @@ -106,6 +118,8 @@ services:
depends_on:
nfd: { condition: service_healthy }
serve-certs: { condition: service_started }
logging:
driver: local

mongodb:
image: mongo:${MONGO_TAG:-7}
Expand All @@ -117,6 +131,8 @@ services:
healthcheck:
test: echo 'db.runCommand("ping").ok' | ${MONGO_SH:-mongosh} --quiet
interval: 5s
logging:
driver: local

ndn-python-repo:
image: ghcr.io/ucla-irl/ndn-python-repo:20240508
Expand All @@ -131,6 +147,8 @@ services:
depends_on:
mongodb: { condition: service_healthy }
nfd: { condition: service_healthy }
logging:
driver: local

ndncert:
image: ghcr.io/named-data/ndncert-ca:20240507
Expand All @@ -145,6 +163,8 @@ services:
restart: unless-stopped
depends_on:
nfd: { condition: service_healthy }
logging:
driver: local

root-http-ca:
image: ghcr.io/named-data/testbed-master:20240512
Expand All @@ -163,6 +183,8 @@ services:
restart: unless-stopped
depends_on:
master: { condition: service_healthy }
logging:
driver: local

root-ndncert:
image: ghcr.io/named-data/ndncert-ca:20240507
Expand All @@ -178,6 +200,8 @@ services:
restart: unless-stopped
depends_on:
nfd: { condition: service_healthy }
logging:
driver: local

file-server:
image: ghcr.io/yoursunny/ndn6-tools:20240505
Expand All @@ -191,3 +215,5 @@ services:
restart: unless-stopped
depends_on:
nfd: { condition: service_healthy }
logging:
driver: local