Skip to content

Commit

Permalink
Add ?q= param to save search query in history
Browse files Browse the repository at this point in the history
  • Loading branch information
JorianWoltjer committed Dec 26, 2023
1 parent 21d809a commit 387eb15
Show file tree
Hide file tree
Showing 4 changed files with 156 additions and 135 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build: ./frontend
depends_on:
- backend
restart: always
restart: unless-stopped
container_name: jw-frontend
hostname: frontend
environment:
Expand All @@ -23,7 +23,7 @@ services:
build: ./backend
depends_on:
- db
restart: always
restart: unless-stopped
container_name: jw-backend
hostname: backend
environment:
Expand All @@ -39,7 +39,7 @@ services:
image: postgres:latest
container_name: jw-db
hostname: db
restart: always
restart: unless-stopped
environment:
- BACKEND_PASSWORD=${BACKEND_PASSWORD}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
Expand All @@ -51,7 +51,7 @@ services:

nginx:
image: nginx:latest
restart: always
restart: unless-stopped
container_name: jw-nginx
networks:
- website
Expand Down
Loading

0 comments on commit 387eb15

Please sign in to comment.