Skip to content
Draft
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
18 changes: 13 additions & 5 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ services:
- 8000:8000
- 8001:8001
- 6011:6011
links:
networks:
- notification-network
depends_on:
- db
- redis

db:
image: postgres:11.22-bullseye@sha256:c886a3236b3d11abc302e64309186c90a69b49e53ccff23fd8c8b057b5b4bce9
Expand All @@ -32,16 +35,21 @@ services:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: chummy
POSTGRES_HOST_AUTH_METHOD: trust
expose:
- "5432"
networks:
- notification-network
ports:
- "5432:5432"

redis:
image: redis:6.2@sha256:7919fdd5300e7abf7ae95919e6f144b37c55df16553302dbbcc7495a5aa0c079
restart: always
command: redis-server --port 6380
networks:
- notification-network
ports:
- "6380:6380"
expose:
- "6380"

networks:
notification-network:
name: notification-network
driver: bridge
136 changes: 31 additions & 105 deletions tests_cypress/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.