2 Commits

Author SHA1 Message Date
gitea-actions
e0ab5b5961 chore: bump version to v0.1.27
All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
Build & Push Docker Image / build (push) Successful in 20s
2026-04-08 09:29:45 +00:00
Matthieu
560734d72c Revert "fix : resolve Docker port conflicts and fix var/ permissions on install"
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
This reverts commit 123d9b306f.
2026-04-08 11:29:38 +02:00
5 changed files with 7 additions and 11 deletions

View File

@@ -1,2 +1,2 @@
parameters:
app.version: '0.1.26'
app.version: '0.1.27'

View File

@@ -32,7 +32,7 @@ services:
depends_on:
- db
ports:
- "3005:3003"
- "3003:3003"
restart: unless-stopped
nginx:
image: nginx:1.27-alpine
@@ -47,7 +47,7 @@ services:
restart: unless-stopped
db:
image: postgres:16-alpine
command: -p ${POSTGRES_PORT:-5437}
command: -p ${POSTGRES_PORT:-5436}
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
@@ -55,7 +55,7 @@ services:
volumes:
- pg_data:/var/lib/postgresql/data
ports:
- "${POSTGRES_PORT:-5437}:${POSTGRES_PORT:-5437}"
- "${POSTGRES_PORT:-5436}:${POSTGRES_PORT:-5436}"
restart: unless-stopped
volumes:
pg_data:

View File

@@ -5,6 +5,6 @@ APP_USER=www-data
POSTGRES_DB=central
POSTGRES_USER=root
POSTGRES_PASSWORD=root
POSTGRES_PORT=5437
POSTGRES_PORT=5436
XDEBUG_CLIENT_HOST=host.docker.internal
HOST_APPS_PATH=/home/user/workspace

View File

@@ -81,7 +81,7 @@ RUN mkdir -p /var/www/.composer/cache/vcs \
ENV COMPOSER_HOME=/var/www/.composer
# Création de la structure du projet
RUN mkdir -p /var/www/html/LOG /var/www/html/var/cache /var/www/html/var/log
RUN mkdir /var/www/html/LOG
###> User ###
ARG CURRENT_UID

View File

@@ -43,11 +43,7 @@ install: composer-install cache-clear node-use build-nuxtJS migration-migrate
# Supprime tout est réinstalle tout (Attention ça supprime la bdd aussi)
reset: delete_built_dir remove_orphans build-without-cache start wait install
fix-permissions:
$(EXEC_PHP_ROOT) mkdir -p var/cache var/log
$(EXEC_PHP_ROOT) chown -R $(APP_USER):$(APP_USER) var/
composer-install: fix-permissions
composer-install:
$(EXEC_PHP) composer install
$(SYMFONY_CONSOLE) lexik:jwt:generate-keypair --skip-if-exists