This repository has been archived on 2025-06-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
joeac.net-symfony/compose.yaml

34 lines
583 B
YAML

networks:
app-network:
driver: bridge
services:
phpfpm:
build: ./symfony
volumes:
- ./php-fpm:/opt/bitnami/php/etc/php-fpm.d
expose:
- 9000
networks:
- app-network
nginx:
image: 'docker.io/bitnami/nginx:1.28'
depends_on:
- phpfpm
networks:
- app-network
ports:
- '8080:8080'
- '443:443'
volumes:
- ./nginx:/opt/bitnami/nginx/conf/server_blocks
- ./symfony:/app
resticprofile:
build: ./resticprofile
depends_on:
- phpfpm
volumes:
- ./symfony/var:/app/var