-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
74 lines (70 loc) · 1.67 KB
/
Copy pathdocker-compose.yml
File metadata and controls
74 lines (70 loc) · 1.67 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Generated by Athena v0.1.0 from test_no_conflicts deployment
# Developed by UNFAIR Team: https://github.com/Jeck0v/Athena
# Generated: 2026-02-11 00:57:50 UTC
# Features: Intelligent defaults, optimized networking, enhanced health checks
# Services: 3 configured with intelligent defaults
services:
app1:
image: nginx:alpine
ports:
- 8080:80
healthcheck:
test:
- CMD-SHELL
- curl -f http://localhost:80/ || exit 1
interval: 20s
timeout: 5s
retries: 3
start_period: 30s
restart: always
networks:
- test_no_conflicts_network
labels:
athena.generated: 2026-02-11
athena.project: test_no_conflicts
athena.service: app1
athena.type: proxy
app2:
image: httpd:alpine
ports:
- 8081:8000
healthcheck:
test:
- CMD-SHELL
- curl -f http://localhost:8000/ || exit 1
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
restart: unless-stopped
networks:
- test_no_conflicts_network
labels:
athena.generated: 2026-02-11
athena.project: test_no_conflicts
athena.service: app2
athena.type: generic
app3:
image: apache:latest
ports:
- 9000:80
healthcheck:
test:
- CMD-SHELL
- curl -f http://localhost:80/ || exit 1
interval: 20s
timeout: 5s
retries: 3
start_period: 30s
restart: always
networks:
- test_no_conflicts_network
labels:
athena.generated: 2026-02-11
athena.project: test_no_conflicts
athena.service: app3
athena.type: proxy
networks:
test_no_conflicts_network:
driver: bridge
name: test-no-conflicts