mirror of
https://github.com/mashirozx/docker-php-nginx.git
synced 2024-11-01 12:38:15 +08:00
12 lines
193 B
YAML
12 lines
193 B
YAML
|
version: '3.5'
|
||
|
services:
|
||
|
app:
|
||
|
build: .
|
||
|
sut:
|
||
|
image: alpine:3.10
|
||
|
depends_on:
|
||
|
- app
|
||
|
command: /tmp/run_tests.sh
|
||
|
volumes:
|
||
|
- "./run_tests.sh:/tmp/run_tests.sh:ro"
|