chore: initial commit with Docker + Ansible base
This commit is contained in:
16
docker-compose.yml
Normal file
16
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user