23 lines
382 B
YAML
23 lines
382 B
YAML
services:
|
|
php:
|
|
image: php:8-fpm
|
|
volumes:
|
|
- ./cms:/var/www/html
|
|
networks:
|
|
- app-network
|
|
user: "${UID}:${GID}"
|
|
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8088:80"
|
|
volumes:
|
|
- ./cms:/var/www/html
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
depends_on:
|
|
- php
|
|
networks:
|
|
- app-network
|
|
|
|
networks:
|
|
app-network: |