"lib/font/git@forgeb1.univ-lehavre.fr:khraimes/cours.git" n'existait pas sur "10545d41cc3d5d18b964d80182676ef6770f11d3"
Newer
Older
# Development overrides - automatically merged with compose.yaml
services:
php:
build:
context: ./api
target: frankenphp_dev
volumes:
- ./api:/app
- /app/var
- ./api/frankenphp/Caddyfile:/etc/caddy/Caddyfile:ro
- ./api/frankenphp/conf.d/app.dev.ini:/usr/local/etc/php/conf.d/app.dev.ini:ro
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
environment:
XDEBUG_MODE: "${XDEBUG_MODE:-off}"
extra_hosts:
- host.docker.internal:host-gateway
tty: true
pwa:
build:
context: ./pwa
target: dev
volumes:
- ./pwa:/srv/app
environment:
WATCHPACK_POLLING: "true"
database:
ports:
- target: 5432
published: ${POSTGRES_PORT:-5432}
pgadmin:
image: dpage/pgadmin4:latest
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_EMAIL:-admin@admin.com}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_PASSWORD:-admin}
PGADMIN_CONFIG_SERVER_MODE: "False"
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: "False"
ports:
- target: 80
published: ${PGADMIN_PORT:-5050}
depends_on:
database:
condition: service_healthy
volumes:
- pgadmin_data:/var/lib/pgadmin