Skip to content
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
2 changes: 1 addition & 1 deletion compose.deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ services:

cloudflared:
# Cloudflared tunnel service
image: cloudflare/cloudflared:latest@sha256:89ee50efb1e9cb2ae30281a8a404fed95eb8f02f0a972617526f8c5b417acae2
image: cloudflare/cloudflared:latest@sha256:6d91c121b803126f7a5344005d17a9324788fc09d305b6e2560ec6040a7ae283
restart: unless-stopped
depends_on:
api:
Expand Down
4 changes: 2 additions & 2 deletions compose.e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
env_file: ./backend/.env.test

redis:
image: redis:8-alpine@sha256:81b6f81d6a6c5b9019231a2e8eb10085e3a139a34f833dcc965a8a959b040b72
image: redis:8-alpine@sha256:9d317178eceac8454a2284a9e6df2466b93c745529947f0cd42a0fa9609d7005
healthcheck:
test: [ "CMD-SHELL", "redis-cli ping | grep -q PONG" ]
interval: 10s
Expand All @@ -72,7 +72,7 @@ services:
command: [ "redis-server", "--appendonly", "yes", "--save", "60", "1" ]

postgres:
image: postgres:18
image: postgres:18@sha256:4aabea78cf39b90e834caf3af7d602a18565f6fe2508705c8d01aa63245c2e20
env_file: ./backend/.env.test
healthcheck:
test: [ "CMD-SHELL", "pg_isready -h localhost -U postgres -d relab_e2e_db" ]
Expand Down
4 changes: 2 additions & 2 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ services:
- migrations

redis:
image: redis:8-alpine@sha256:81b6f81d6a6c5b9019231a2e8eb10085e3a139a34f833dcc965a8a959b040b72
image: redis:8-alpine@sha256:9d317178eceac8454a2284a9e6df2466b93c745529947f0cd42a0fa9609d7005
restart: unless-stopped
healthcheck:
<<: *healthcheck-defaults
Expand All @@ -87,7 +87,7 @@ services:
command: [ "sh", "-c", "redis-server --appendonly yes --save 60 1 $${REDIS_PASSWORD:+--requirepass $${REDIS_PASSWORD}}" ] # spell-checker: ignore requirepass

postgres:
image: postgres:18
image: postgres:18@sha256:4aabea78cf39b90e834caf3af7d602a18565f6fe2508705c8d01aa63245c2e20
restart: unless-stopped
volumes:
- database_data:/var/lib/postgresql
Expand Down
Loading