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:e39ee8da81ad5e05d77f38d2f51c60ca51bf2a8450ac3abab50c17fdb91d91bf
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:8096655e437712b07503796fb64d81359256cfcff0ab29d95a7da72863786efb
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:3a82e1f56c8f0f5616a11103ac3d47e632c3938698946a7ad26da0df1334744a
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:8096655e437712b07503796fb64d81359256cfcff0ab29d95a7da72863786efb
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:3a82e1f56c8f0f5616a11103ac3d47e632c3938698946a7ad26da0df1334744a
restart: unless-stopped
volumes:
- database_data:/var/lib/postgresql
Expand Down
Loading