- 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
10 lines
151 B
YAML
10 lines
151 B
YAML
version: '3'
|
|
services:
|
|
app:
|
|
image: ${TEST_APP}
|
|
ports:
|
|
- "8081:8080"
|
|
environment:
|
|
- NODE_ENV=test
|
|
restart: unless-stopped
|