Files
dokku-docker-compose/tests/docker-compose.test.yml
Deploy Bot 07cfca4908 Fix deployment test with simplified Nginx container
- Replace complex Node.js app with simple Nginx container
- Add dynamic port allocation to prevent conflicts
- Improve test reliability and cleanup
- Remove dependency on Docker Compose for this test
2025-07-17 21:50:23 -04:00

10 lines
151 B
YAML

version: '3'
services:
app:
image: ${TEST_APP}
ports:
- "8081:8080"
environment:
- NODE_ENV=test
restart: unless-stopped