Initial commit
This commit is contained in:
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
services:
|
||||
php:
|
||||
build:
|
||||
context: resources/docker/php
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
volumes:
|
||||
- ./:/app
|
||||
environment:
|
||||
- XDG_CONFIG_HOME=/app
|
||||
pgsql:
|
||||
image: postgres:17.5-alpine
|
||||
ports:
|
||||
- 5432:5432
|
||||
volumes:
|
||||
- ./resources/docker/db-data:/var/lib/postgresql/data:delegated
|
||||
environment:
|
||||
- POSTGRES_DB=app
|
||||
- POSTGRES_USER=app
|
||||
- POSTGRES_PASSWORD=secret
|
||||
Reference in New Issue
Block a user