1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 05:17:39 +03:00

orchestration beginning

This commit is contained in:
Anton Afanasyeu
2026-05-30 17:55:36 +02:00
parent 95f521c4a0
commit a9a9590698
31 changed files with 1238 additions and 27 deletions

View File

@@ -4,6 +4,7 @@ services:
depends_on:
- gitea-fe
- crashes-fe
- build-fe
ports:
- "${LANDING_HTTP_PORT}:8080"
volumes:
@@ -38,6 +39,34 @@ services:
- appnet
restart: unless-stopped
build-fe:
image: nginx:1.27-alpine
depends_on:
- build-php
ports:
- "${BUILD_FE_PORT}:8080"
volumes:
- ../:/workspace
- ./nginx/build-fe.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- appnet
restart: unless-stopped
build-php:
build:
context: .
dockerfile: images/build-php-fpm/Dockerfile
depends_on:
- mariadb
volumes:
- ../:/workspace
- /var/run/docker.sock:/var/run/docker.sock
- ./runtime/build-config.php:/workspace/examples/build_console/backend/config/config.php
- ./runtime/ota-artifacts:/workspace/orchestration/runtime/ota-artifacts
networks:
- appnet
restart: unless-stopped
crash-php:
build:
context: .