prod commit

This commit is contained in:
2022-04-04 07:55:44 +05:30
commit 7c3f93e0d0
1377 changed files with 12171 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
version: '3.3'
services:
database:
image: postgres
container_name: database
restart: unless-stopped
environment:
POSTGRES_PASSWORD: secret
POSTGRES_DB: laravel_docker
volumes:
- ./postgres-data:/var/lib/postgresql/data
ports:
- '5430:5432'
php-apache:
# container_name: php-apache
build:
context: ./php
ports:
- '8080:80'
volumes:
- ./src:/var/www/laravel_docker
- ./apache/default.conf:/etc/apache2/sites-enabled/000-default.conf
depends_on:
- database