ajout param enabled 2fa, trusted headers
Some checks failed
Cadoles/hydra-sql/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-19 11:32:11 +02:00
parent 148f05ef79
commit 6667f44aac
5 changed files with 37 additions and 16 deletions

View File

@@ -123,17 +123,17 @@ services:
- postgres:/var/lib/pgsql/data
- /etc/localtime:/etc/localtime:ro
pgadmin:
image: dpage/pgadmin4
ports:
- 8085:80
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.com
PGADMIN_DEFAULT_PASSWORD: admin
PGADMIN_SERVER_JSON_FILE: /pgadminfile/server.json
volumes:
- ./misc/compose/pgadmin:/pgadminfile/:ro
# pgadmin:
# image: dpage/pgadmin4
# ports:
# - 8085:80
# restart: always
# environment:
# PGADMIN_DEFAULT_EMAIL: admin@admin.com
# PGADMIN_DEFAULT_PASSWORD: admin
# PGADMIN_SERVER_JSON_FILE: /pgadminfile/server.json
# volumes:
# - ./misc/compose/pgadmin:/pgadminfile/:ro
mariadb:
image: mariadb:10.10
environment:
@@ -169,7 +169,17 @@ services:
ports:
- "8070:80" # Mappe le port 80 du conteneur sur 8081 de l'hôte
depends_on:
- mariadb # Si tu utilises la DB partagée
- postgres # Si tu utilises la DB partagée
pgweb:
container_name: pgweb
restart: always
image: sosedoff/pgweb
ports:
- "8095:8081"
environment:
- PGWEB_DATABASE_URL=postgres://lasql:lasql@postgres:5432/lasql?sslmode=disable
depends_on:
- postgres
volumes:
postgres:
mariadb: