Initial commit

This commit is contained in:
2024-08-27 19:03:24 -05:00
commit 5438f9e358
27 changed files with 2693 additions and 0 deletions

32
docker-compose.yml Normal file
View File

@@ -0,0 +1,32 @@
version: '3.3'
services:
app:
build:
context: ./php
container_name: photo_gallery_php
volumes:
- ./web:/var/www/html
user: "1000:1000"
#ports:
# - "9000:9000"
networks:
- photo-gallery-network
nginx:
image: nginx:latest
container_name: photo_gallery_nginx
volumes:
- ./web:/var/www/html
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
ports:
- "8080:80"
depends_on:
- app
networks:
- photo-gallery-network
networks:
photo-gallery-network:
driver: bridge