-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (29 loc) · 815 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (29 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
scim-client:
build:
context: .
dockerfile: Dockerfile
target: production
container_name: scim-client
ports:
- "6060:80"
environment:
- SCIM_ENDPOINT=${SCIM_ENDPOINT:-https://localhost:7001/scim/v2}
- SCIM_API_KEY=${SCIM_API_KEY:-}
- CORS_PROXY_PORT=8002
volumes:
# Mount test results for external access
- ./test-results:/usr/share/nginx/html/test-results
- ./playwright-report:/usr/share/nginx/html/playwright-report
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:80/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
networks:
- scim-network
networks:
scim-network:
driver: bridge