Resetting docker compose a bit.

This commit is contained in:
dan612
2026-03-22 16:14:13 -04:00
parent 0b90913b5b
commit ffc04634ff
2 changed files with 3 additions and 12 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ vendor
node_modules node_modules
database/origo.db database/origo.db
scripts/default-content.sh scripts/default-content.sh
docker-compose.override.yml

View File

@@ -3,24 +3,14 @@ services:
image: dchadwick/planet-express:1.0.1 image: dchadwick/planet-express:1.0.1
working_dir: /app working_dir: /app
command: php-fpm -F command: php-fpm -F
ports:
- "127.0.0.1:9000:9000"
volumes: volumes:
- .:/app - .:/app
- ./database:/app/database - ./database:/app/database
networks: networks:
- app-network - app-network
web:
image: nginx:alpine
ports:
- "8000:80"
volumes:
- .:/app
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- php
networks:
- app-network
networks: networks:
app-network: app-network:
driver: bridge driver: bridge