14 lines
217 B
YAML
14 lines
217 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: base
|
|
ports:
|
|
- 8000:8000
|
|
environment:
|
|
- APP_ENV=dev
|
|
- APP_DEBUG=1
|
|
volumes:
|
|
- ./:/var/www/html
|