Files
origo/docker-compose.yml

27 lines
451 B
YAML
Raw Normal View History

2026-01-15 09:50:55 -05:00
services:
2026-03-22 13:23:31 -04:00
php:
image: dchadwick/planet-express:1.0.1
working_dir: /app
command: php-fpm -F
volumes:
- .:/app
- ./database:/app/database
networks:
- app-network
web:
image: nginx:alpine
2026-01-15 09:50:55 -05:00
ports:
2026-03-22 13:23:31 -04:00
- "8000:80"
2026-01-15 09:50:55 -05:00
volumes:
- .:/app
2026-03-22 13:23:31 -04:00
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- php
2026-01-15 09:50:55 -05:00
networks:
- app-network
networks:
app-network:
driver: bridge