change profiles to STATE env

This commit is contained in:
stanig2106
2025-09-10 00:42:13 +02:00
parent 77a33bdbc3
commit fe62a1f11a

View File

@@ -1,5 +1,3 @@
version: "3.9"
services: services:
mongo: mongo:
image: mongo:6.0 image: mongo:6.0
@@ -7,71 +5,34 @@ services:
volumes: volumes:
- mongo-data:/data/db - mongo-data:/data/db
# Phase d'installation - UI sur 8080 pour config initiale
adapt-install:
build: .
profiles: ["install"]
depends_on:
- mongo
environment:
- NODE_ENV=production
ports:
- "3500:8080"
volumes:
- app-data:/data
command: >
sh -lc "rm -rf /data/app; npx adapt-security/at-utils install --prerelease /data/app"
restart: "no"
# Phase de run - lance l'app déjà installée
adapt: adapt:
build: . build: .
profiles: ["run"]
depends_on: depends_on:
- mongo - mongo
environment: environment:
- NODE_ENV=production - NODE_ENV=production
- STATE=${STATE:-run} # valeur par défaut = run
ports: ports:
- "3500:8080" - "3500:8080"
volumes: volumes:
- app-data:/data - app-data:/data
working_dir: /data/app working_dir: /data/app
command: > command: >
sh -lc "npm start" sh -lc '
case "$STATE" in
install)
rm -rf /data/app && npx adapt-security/at-utils install --prerelease /data/app
;;
update)
npx adapt-security/at-utils update --prerelease .
;;
run|*)
npm start
;;
esac
'
restart: unless-stopped restart: unless-stopped
# Phase de mise à jour
adapt-update:
build: .
profiles: ["update"]
depends_on:
- mongo
environment:
- NODE_ENV=production
ports:
- "3500:8080"
volumes:
- app-data:/data
working_dir: /data/app
command: >
sh -lc "npx adapt-security/at-utils update --prerelease ."
restart: "no"
# Initialisation super user
adapt-init-super:
build: .
profiles: ["init-super"]
depends_on:
- mongo
environment:
- NODE_ENV=production
volumes:
- app-data:/data
working_dir: /data/app
command: >
sh -lc "echo 'poplpopl' | npx adapt-security/at-utils register-super --super-email stani@eduvia.app --pipe-passwd --ignore-prereqs --verbose"
restart: "no"
volumes: volumes:
mongo-data: mongo-data:
app-data: app-data: