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:a5b5e6fd9a372f054b9a843c219bfbcdceb54691605312a8b1ee72978bdf1aa1
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:db23de1b61f3b4707e3e5f4a192ae085a2bf1521173f8ab3183d32ddab0ca0fb
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:8ff36f3c66371cba71d20ceedccfc3de9669a68737607888c4ef0af93abe8e39
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:db23de1b61f3b4707e3e5f4a192ae085a2bf1521173f8ab3183d32ddab0ca0fb
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:8ff36f3c66371cba71d20ceedccfc3de9669a68737607888c4ef0af93abe8e39
restart: unless-stopped
volumes:
- database_data:/var/lib/postgresql
Expand Down
Loading