dencode.xrg.es/docker/docker-compose.yml

21 lines
347 B
YAML
Raw Normal View History

2021-09-15 11:27:22 +00:00
services:
dencode-nginx:
image: nginx:latest
ports:
2021-09-15 11:46:22 +00:00
- "8085:80"
2021-09-15 11:27:22 +00:00
volumes:
- ../app:/var/www/html
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
links:
- dencode-php
dencode-php:
image: php:8-fpm
volumes:
- ../app:/var/www/html
networks:
default:
name: dencode-network