Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove devkit from docker compose #70

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 3 additions & 19 deletions assets/project/.localbeach.docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ services:
- "8081"
- "8082"
volumes:
- application:/application
- ./Data/Persistent:/application/Data/Persistent:delegated
- ./Web:/application/Web:delegated
- ./:/application
environment:
- VIRTUAL_HOST=${BEACH_VIRTUAL_HOSTS:?Please specify Beach virtual hosts as BEACH_VIRTUAL_HOSTS}
- VIRTUAL_PORT=8080
Expand All @@ -34,15 +32,6 @@ services:
- FLOW_HTTP_TRUSTED_PROXIES=*
- NGINX_CACHE_ENABLE=false

devkit:
image: flownative/localbeach-devkit:0
container_name: ${BEACH_PROJECT_NAME:?Please specify a Beach project name as BEACH_PROJECT_NAME}_devkit
networks:
- local_beach
volumes:
- application:/application
- .:/application-on-host:delegated

php:
image: ${BEACH_PHP_IMAGE:-flownative/beach-php}:${BEACH_PHP_IMAGE_VERSION:-8.2}
container_name: ${BEACH_PROJECT_NAME:?Please specify a Beach project name as BEACH_PROJECT_NAME}_php
Expand All @@ -52,17 +41,12 @@ services:
depends_on:
- webserver
- redis
- devkit
security_opt:
- no-new-privileges
volumes:
- application:/application
- ./Data/Persistent:/application/Data/Persistent:delegated
- ./Data/Logs:/application/Data/Logs:delegated
- ./Data/DoctrineMigrations:/application/Data/DoctrineMigrations
- ./Web:/application/Web:delegated
- ./:/application
environment:
- BEACH_WAIT_FOR_SYNC=true
- BEACH_WAIT_FOR_SYNC=false
- BEACH_INSTANCE_NAME=${BEACH_PROJECT_NAME}
- BEACH_FLOW_BASE_CONTEXT=${BEACH_FLOW_BASE_CONTEXT:-Development}
- BEACH_FLOW_SUB_CONTEXT=${BEACH_FLOW_SUB_CONTEXT:-Instance}
Expand Down