Files related with building distribution images now have it's own directory. Files for development using docker-compose are now placed in .docker-compose directory as they are non-essentials.
38 lines
806 B
YAML
38 lines
806 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./front:/var/www/front:cached
|
|
- ./api:/var/www/api:cached
|
|
- .docker-compose/nginx/cojedzie.conf:/etc/nginx/conf.d/cojedzie.conf
|
|
|
|
api:
|
|
build:
|
|
context: ./api
|
|
dockerfile: Dockerfile
|
|
env_file:
|
|
- .docker-compose/api/.env
|
|
volumes:
|
|
- ./api:/var/www:cached
|
|
- .docker-compose/api/log.conf:/usr/local/etc/php-fpm.d/zz-log.conf
|
|
|
|
frontend:
|
|
image: node:15.2.1
|
|
working_dir: /app
|
|
environment:
|
|
- APP_API=http://nginx/api
|
|
volumes:
|
|
- ./front:/app
|
|
command: ["node", "build/server.js"]
|
|
|
|
blackfire:
|
|
image: blackfire/blackfire
|
|
ports: ["8707"]
|
|
environment:
|
|
- BLACKFIRE_SERVER_ID
|
|
- BLACKFIRE_SERVER_TOKEN
|