chore: initial commit with Docker + Ansible base

This commit is contained in:
2025-05-18 16:37:48 +02:00
commit 3284204281
11 changed files with 88 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "3.9"
services:
web:
build: ./app
ports:
- "8000:80"
volumes:
- ./app/html:/var/www/html
depends_on:
- php
php:
image: php:8.4-fpm
volumes:
- ./app/html:/var/www/html