services: app: container_name: ${CONTAINER_NAME}-app build: context: ./ dockerfile: ./docker/app/Dockerfile target: app-dev args: COMPOSER_AUTH: "{}" APP_BASE_DIR: ${APP_BASE_DIR-.} depends_on: db: condition: service_healthy environment: XDEBUG_IDE_KEY: ${XDEBUG_IDE_KEY} restart: unless-stopped extra_hosts: - "host.docker.internal:host-gateway" volumes: - ${APP_BASE_DIR-.}:/app web: container_name: ${CONTAINER_NAME}-web build: context: ./ dockerfile: ./docker/web/Dockerfile args: APP_BASE_DIR: ${APP_BASE_DIR-.} restart: unless-stopped ports: - ${HTTP_PORT}:8080 environment: PHP_FPM_HOST: app volumes: - ${APP_BASE_DIR-.}/public:/app/public depends_on: app: condition: service_healthy db: container_name: ${CONTAINER_NAME}-db image: postgres:16-alpine3.18 environment: USER_ID: ${USER_ID} GROUP_ID: ${GROUP_ID} PGDATA: /data/postgres PGUSER: ${DB_ROOT_USERNAME} POSTGRES_DB: ${DB_DATABASE} POSTGRES_USER: ${DB_USERNAME} POSTGRES_PASSWORD: ${DB_PASSWORD} volumes: - sqldata:/data/postgres ports: - ${DB_PORT}:5432 restart: unless-stopped healthcheck: test: [ "CMD-SHELL", "pg_isready", "-d" ] timeout: 5s retries: 3 mailer: container_name: ${CONTAINER_NAME}-mailer image: axllent/mailpit ports: - "1025" - "8025" environment: MP_SMTP_AUTH_ACCEPT_ANY: 1 MP_SMTP_AUTH_ALLOW_INSECURE: 1 restart: unless-stopped volumes: sqldata: