mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
16 lines
327 B
YAML
16 lines
327 B
YAML
version: '3'
|
|
|
|
services:
|
|
php-cli:
|
|
image: php-cli
|
|
container_name: php-cli
|
|
working_dir: /project
|
|
entrypoint: php
|
|
command: -S 0.0.0.0:99
|
|
build:
|
|
context: ./.docker/config
|
|
args:
|
|
- TIMEZONE=$TIMEZONE
|
|
volumes:
|
|
- .:/project
|