Initial commit
Some checks failed
PHP Composer / build (push) Has been cancelled

This commit is contained in:
Armel van Ravels
2024-08-30 20:29:39 +02:00
commit 804a875aff
38 changed files with 7224 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
php:
build:
context: resources/docker/php
ports:
- 80:80
- 443:443
volumes:
- ./:/app
pgsql:
image: postgres:13-alpine
volumes:
- ./resources/docker/db-data:/var/lib/postgresql/data:delegated
environment:
- POSTGRES_DB=app
- POSTGRES_USER=app
- POSTGRES_PASSWORD=secret