Skip to content

Commit 9e26cb4

Browse files
authored
Add read service for CT log (#2258)
TesseraCT is a write-only service, it needs a separate web server to serve tiles and checkpoints. Add an nginx container to the dev environment to support the read path for monitoring. Signed-off-by: Colleen Murphy <colleenmurphy@google.com>
1 parent 7bff3d6 commit 9e26cb4

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,13 @@ services:
9797
restart: always
9898
ports:
9999
- "6962:6962"
100+
ct-read:
101+
image: nginx:1.29.4@sha256:ca871a86d45a3ec6864dc45f014b11fe626145569ef0e74deaffc95a3b15b430
102+
volumes:
103+
- ctStorage:/usr/share/nginx/html
104+
user: root
105+
restart: always
106+
ports:
107+
- "8000:80"
100108
volumes:
101109
ctStorage: {}

0 commit comments

Comments
 (0)