2022-05-03 08:54:45 +02:00
|
|
|
version: "3.8"
|
2022-04-07 11:49:17 +02:00
|
|
|
services:
|
2023-06-16 13:46:17 +02:00
|
|
|
hydra-sql:
|
2022-12-09 17:31:07 +01:00
|
|
|
build:
|
2023-06-14 14:59:14 +02:00
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.standalone
|
2022-12-09 17:31:07 +01:00
|
|
|
ports:
|
2023-06-14 14:59:14 +02:00
|
|
|
- ${APP_HTTP_PORT:-8080}:8080
|
2022-12-09 17:31:07 +01:00
|
|
|
volumes:
|
2023-06-14 14:59:14 +02:00
|
|
|
- ./src:/app/src:delegated
|
|
|
|
- ./templates:/app/templates:delegated
|
|
|
|
- ./translations:/app/translations:delegated
|
|
|
|
- ./tests:/app/tests:delegated
|
|
|
|
- ./config:/app/config:delegated
|
|
|
|
- ./.env:/app/.env:delegated
|
2022-12-09 17:31:07 +01:00
|
|
|
environment:
|
2023-06-14 14:59:14 +02:00
|
|
|
PHP_FPM_MEMORY_LIMIT: 128m
|
|
|
|
APP_ENV: dev
|
|
|
|
APP_LOCALES: fr,en
|
|
|
|
HYDRA_ADMIN_BASE_URL: http://hydra:4445
|
|
|
|
TRUSTED_PROXIES: 127.0.0.1,REMOTE_ADDR,localhost
|
|
|
|
ISSUER_URL: http://localhost:8000
|
|
|
|
BASE_URL: http://localhost:8080
|
|
|
|
DB_USER: lasql
|
|
|
|
DB_PASSWORD: lasql
|
|
|
|
DEFAULT_LOCALE: fr
|
|
|
|
DSN_REMOTE_DATABASE: pgsql:host='postgres';port=5432;dbname=lasql;
|
|
|
|
HASH_ALGO_LEGACY: sha256
|
|
|
|
SECURITY_PATTERN: password,salt,pepper
|
2023-06-15 15:38:14 +02:00
|
|
|
REDIS_URL: redis://redis:6379
|
2022-12-09 17:31:07 +01:00
|
|
|
oidc-test:
|
|
|
|
image: bornholm/oidc-test:v0.0.0-1-g936a77e
|
|
|
|
environment:
|
|
|
|
- LOG_LEVEL=0
|
|
|
|
- HTTP_ADDRESS=0.0.0.0:8000
|
|
|
|
- OIDC_CLIENT_ID=oidc-test
|
|
|
|
- OIDC_CLIENT_SECRET=oidc-test-123456
|
|
|
|
- OIDC_ISSUER_URL=http://localhost:8081/
|
|
|
|
- OIDC_REDIRECT_URL=http://localhost:8000
|
|
|
|
- OIDC_POST_LOGOUT_REDIRECT_URL=http://localhost:8000
|
|
|
|
depends_on:
|
|
|
|
hydra:
|
|
|
|
condition: service_healthy
|
|
|
|
network_mode: host
|
2022-05-03 08:54:45 +02:00
|
|
|
|
2022-12-09 17:31:07 +01:00
|
|
|
restart: unless-stopped
|
|
|
|
hydra:
|
2023-06-12 15:26:56 +02:00
|
|
|
image: cadoles/hydra-v1:v0.0.0-151-gc9c6fb1
|
2022-12-09 17:31:07 +01:00
|
|
|
volumes:
|
|
|
|
- ./containers/compose/hydra/clients.d:/etc/hydra/clients.d
|
|
|
|
environment:
|
|
|
|
- LOG_LEAK_SENSITIVE_VALUES=true
|
|
|
|
- HYDRA_ALLOW_INSECURE=yes
|
|
|
|
- HYDRA_URLS_SELF_ISSUER=http://localhost:8081/
|
|
|
|
- HYDRA_URLS_LOGOUT=http://localhost:8080/logout
|
|
|
|
- HYDRA_URLS_LOGIN=http://localhost:8080/
|
|
|
|
- HYDRA_URLS_CONSENT=http://localhost:8080/connect/consent
|
2023-06-12 15:26:56 +02:00
|
|
|
- HYDRA_URLS_ERROR=http://localhost:8080/error
|
2022-12-09 17:31:07 +01:00
|
|
|
- HYDRA_LEVEL=debug
|
|
|
|
- HYDRA_DSN=postgres://lasql:lasql@postgres:5432/hydra
|
|
|
|
- HYDRA_WAIT4X_DATABASE_DSN=postgres://lasql:lasql@postgres:5432/hydra?sslmode=disable
|
|
|
|
- HYDRA_WAIT4X_DATABASE_TYPE=postgresql
|
|
|
|
|
|
|
|
ports:
|
|
|
|
- 8081:4444
|
|
|
|
links:
|
|
|
|
- postgres
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:4444/.well-known/openid-configuration"]
|
|
|
|
interval: 10s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 10s
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
postgres:
|
|
|
|
image: postgres:15-alpine
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: lasql
|
|
|
|
POSTGRES_DB: lasql
|
|
|
|
POSTGRES_PASSWORD: lasql
|
|
|
|
volumes:
|
|
|
|
- ./containers/compose/postgres/init-db.d:/docker-entrypoint-initdb.d/:ro
|
|
|
|
- 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:
|
|
|
|
- ./containers/compose/pgadmin:/pgadminfile/:ro
|
2022-12-13 15:46:24 +01:00
|
|
|
mariadb:
|
|
|
|
image: mariadb:10.10
|
|
|
|
environment:
|
|
|
|
MYSQL_DATABASE: lasql
|
|
|
|
MYSQL_USER: lasql
|
|
|
|
MYSQL_PASSWORD: lasql
|
|
|
|
MYSQL_ROOT_PASSWORD: lasql
|
|
|
|
TZ: Europe/Paris
|
|
|
|
volumes:
|
|
|
|
- ./containers/compose/mariadb/init-db.d:/docker-entrypoint-initdb.d/:ro
|
|
|
|
- mariadb:/var/lib/mysql
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2023-06-15 15:38:14 +02:00
|
|
|
# redis:
|
|
|
|
# image: redis:7.2-rc2-alpine
|
|
|
|
# environment:
|
|
|
|
# - TZ=Europe/Paris
|
|
|
|
# volumes:
|
|
|
|
# - /etc/localtime:/etc/localtime:ro
|
2022-12-09 17:31:07 +01:00
|
|
|
volumes:
|
2022-12-13 15:46:24 +01:00
|
|
|
postgres:
|
|
|
|
mariadb:
|