22 lines
439 B
YAML
22 lines
439 B
YAML
services:
|
|
web:
|
|
image: online.fxreader.pr34.test_task_2025_06_30_v1:dev
|
|
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
|