Update version numbers and enhance Docker configurations for improved deployment

This commit is contained in:
Schneider Roland 2025-03-08 14:18:39 +01:00
parent 156658f3fa
commit fd7e602189
6 changed files with 16021 additions and 16457 deletions

View File

@ -1 +1 @@
202503052240.e3b0897
202503081029.156658f

View File

@ -1 +1 @@
202503062114.abcf521
202503081029.156658f

View File

@ -9,6 +9,8 @@ services:
MARIADB_PASSWORD: strapi
volumes:
- strapi-db:/var/lib/mysql
networks:
- yogastic
nextjs-db:
@ -19,6 +21,8 @@ services:
POSTGRES_USER: ${APP_POSTGRES_USER}
volumes:
- next-db:/var/lib/postgresql/data
networks:
- yogastic
app:
image: docker.rschneider.hu/infra/yoga-app:202502252004.fad4103
@ -45,9 +49,10 @@ services:
SITE_MAIL_RECIEVER: ${APP_SITE_MAIL_RECIEVER}
networks:
- proxy_shared
- yogastic
cms:
image: docker.rschneider.hu/infra/yoga-cms:202503061710.7df2989
image: docker.rschneider.hu/infra/yoga-cms:202503081029.156658f
ports:
- "4026:1337"
environment:
@ -66,11 +71,13 @@ services:
JWT_SECRET: fc2be7f56eefe9790bd80a3713974620f42a66313f71bb581ac15328b886ccd42c51eb54f6e897b5d3f6d12bec069dfd116eb63f09d709346ab8c5c328ff42cef1f1cd7e39448186c9c96af3d838e25a3e82dfe72578d775f322bfb3b280ee7db103ae768dcebfc3fa0a9fffeb4d4773cd70e818f6cd8e98f360faa926a8388d18a1c9abcb616600c2c450820a29328df5592dea4a76edf3e9f8147cf92fc88a8a9e3f3698e038c9f7ccbfd7fc04fada3583f2ad8d1ff087a6f23cd33cfc8edf82e6489f1470da5dc52bc1ab1ac025bc9f77a6098f5efecff451498e2d936d005284e149971df15ed81d92ddddd0f71b5ffa3584d853aa3cecc37652430e7d27
networks:
- proxy_shared
- yogastic
volumes:
next-db: {}
strapi-db: {}
networks:
yogastic:
proxy_shared:
external: true
external: false

View File

@ -19,9 +19,9 @@ RUN apk add --no-cache vips-dev
ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}
WORKDIR /opt/
COPY --from=build /opt/node_modules ./node_modules
COPY --from=BUILDER /opt/node_modules ./node_modules
WORKDIR /opt/app
COPY --from=build /opt/app ./
COPY --from=BUILDER /opt/app ./
ENV PATH=/opt/node_modules/.bin:$PATH
RUN chown -R node:node /opt/app

32454
yoga-cms/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,7 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"sharp": "^0.33.5",
"strapi-import-export": "^0.0.1",
"strapi-plugin-schemas-to-ts": "^1.3.2",
"styled-components": "^6.0.0"