mirror of
git://f0xx.org/android_cast
synced 2026-07-29 05:17:39 +03:00
orchestration beginning
This commit is contained in:
@@ -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: .
|
||||
|
||||
Reference in New Issue
Block a user