21 lines
379 B
YAML
21 lines
379 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/web/Dockerfile
|
|
target: web
|
|
environment:
|
|
volumes:
|
|
- .:/app:ro
|
|
- ./tmp/cache:/app/tmp/cache:rw
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: 10m
|
|
max-file: "3"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '0.5'
|
|
memory: 128M
|