Merge branch 'feature/fixing-deploy-path' into develop

This commit is contained in:
2026-01-09 18:51:48 +01:00
4 changed files with 9 additions and 8 deletions

View File

@@ -13,12 +13,10 @@ networks:
services: services:
web-app: web-app:
image: utility-bills-tracker:${IMAGE_VERSION} image: registry.budakova.org/knee-cola/utility-bills-tracker:${IMAGE_VERSION}
networks: networks:
- traefik-network - traefik-network
- util-bills-mongo-network - util-bills-mongo-network
volumes:
- ./web-app/etc/hosts/:/etc/hosts
environment: environment:
MONGODB_URI: mongodb://rezije.app:w4z4piJBgCdAm4tpawqB@mongo:27017/utility-bills MONGODB_URI: mongodb://rezije.app:w4z4piJBgCdAm4tpawqB@mongo:27017/utility-bills
GOOGLE_ID: 355397364527-adjrokm6hromcaaar0qfhk050mfr35ou.apps.googleusercontent.com GOOGLE_ID: 355397364527-adjrokm6hromcaaar0qfhk050mfr35ou.apps.googleusercontent.com
@@ -55,8 +53,8 @@ services:
MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example MONGO_INITDB_ROOT_PASSWORD: example
volumes: volumes:
- ./mongo-volume:/data/db - /home/knee-cola/docker/evidencija-rezija/mongo-volume:/data/db
- ./mongo-backup:/backup - /home/knee-cola/docker/evidencija-rezija/mongo-backup:/backup
networks: networks:
- util-bills-mongo-network - util-bills-mongo-network
mongo-express: mongo-express:

View File

@@ -12,6 +12,9 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app WORKDIR /app
# copy custom hosts file to avoid issues with some auth providers
COPY ./etc/hosts /etc/hosts
# Copy package files # Copy package files
COPY ./package.json ./package-lock.json ./ COPY ./package.json ./package-lock.json ./

View File

@@ -1,11 +1,11 @@
{ {
"name": "evidencija-rezija", "name": "evidencija-rezija",
"version": "2.21.0", "version": "2.21.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"version": "2.21.0", "version": "2.21.1",
"dependencies": { "dependencies": {
"@emotion/react": "^11.14.0", "@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1", "@emotion/styled": "^11.14.1",

View File

@@ -58,5 +58,5 @@
"engines": { "engines": {
"node": ">=18.17.0" "node": ">=18.17.0"
}, },
"version": "2.21.0" "version": "2.21.1"
} }