add dockerfile and config

This commit is contained in:
2024-11-02 17:32:33 +03:00
commit 34148ff7d3
3 changed files with 63 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
nginx:
build:
context: ./docker
dockerfile: Dockerfile
image: bitdeals/nginx
volumes:
- php_socket:/run
- storage:/app/storage/:ro
- public:/app/public/:ro
depends_on:
- php-app