Skip to content

Commit 92b079f

Browse files
committed
Bump docker version
1 parent 4119a75 commit 92b079f

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

docker-compose.dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- anomaly-detection-local-db_data_backups:/backups
1111
env_file:
1212
- ./api/.envs/.local/.postgres.env
13-
# command: "-c log_statement=all"
13+
command: "-c log_statement=all"
1414

1515
broker:
1616
image: rabbitmq:4.1.0-management
@@ -58,7 +58,7 @@ services:
5858
container_name: anomaly-detection-local-flower
5959
hostname: flower
6060
ports:
61-
- "5555:5555"
61+
- "5556:5555"
6262
command: sh -c "celery -A project flower --basic_auth=$$CELERY_FLOWER_USER:$$CELERY_FLOWER_PASSWORD"
6363

6464
frontend:

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- anomaly-detection-broker:/var/lib/rabbitmq
1919

2020
backend_api: &api
21-
image: ghcr.io/mosquito-alert/anomaly_detection-api:0.1.2
21+
image: ghcr.io/mosquito-alert/anomaly_detection-api:0.1.3
2222
container_name: anomaly-detection-api
2323
hostname: api
2424
ports:
@@ -59,7 +59,7 @@ services:
5959
disable: true
6060

6161
frontend:
62-
image: ghcr.io/mosquito-alert/anomaly_detection-frontend:0.1.2
62+
image: ghcr.io/mosquito-alert/anomaly_detection-frontend:0.1.3
6363
container_name: anomaly-detection-frontend
6464
hostname: frontend
6565
ports:

frontend/src/components/RegionDetailedDrawer/index.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<template>
2-
<q-drawer show-if-above side="left" :width="width" class="bg-white overflow-hidden column">
2+
<q-drawer
3+
show-if-above
4+
side="left"
5+
:width="width"
6+
v-model="mapStore.isRegionSelected"
7+
class="bg-white overflow-hidden column"
8+
>
39
<div class="drawer-header q-pt-lg q-pb-sm q-px-lg q-ma-none" style="background-color: #f9e7b5">
410
<q-btn
511
dense

0 commit comments

Comments
 (0)