Files
weather/docker-compose.yml
Oh c87bf18b4e
Some checks failed
Tests / Tests PHP 7.4 (push) Has been cancelled
Tests / Tests PHP 8 (push) Has been cancelled
Tests / Tests PHP 8.1 (push) Has been cancelled
Initial commit
2025-09-04 08:59:22 +02:00

19 lines
347 B
YAML

version: '3.7'
volumes:
logs:
driver: local
services:
slim:
image: php:7-alpine
working_dir: /var/www
command: php -S 0.0.0.0:8080 -t public
environment:
docker: "true"
ports:
- "8080:8080"
volumes:
- .:/var/www
- logs:/var/www/logs