Skip to content

Commit 0335bb3

Browse files
committed
split dozzle agent out
moved a bunch of stuff to experiments
1 parent 4df3c05 commit 0335bb3

61 files changed

Lines changed: 20 additions & 14 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
services:
2+
agent:
3+
image: amir20/dozzle:${IMAGE_VERSION:-latest}
4+
container_name: dozzle-agent
5+
hostname: dozzle-agent
6+
restart: unless-stopped
7+
command: agent
8+
healthcheck:
9+
test: ["CMD", "/dozzle", "healthcheck"]
10+
interval: 5s
11+
retries: 5
12+
start_period: 5s
13+
start_interval: 5s
14+
volumes:
15+
- /var/run/docker.sock:/var/run/docker.sock:ro
16+
ports:
17+
- 7007:7007

apps/dozzle/docker-compose.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,12 @@ services:
1212
- proxy
1313
env_file:
1414
- .env
15-
16-
agent:
17-
image: amir20/dozzle:${IMAGE_VERSION:-latest}
18-
container_name: dozzle-agent
19-
hostname: dozzle-agent
20-
restart: unless-stopped
21-
command: agent
2215
healthcheck:
2316
test: ["CMD", "/dozzle", "healthcheck"]
24-
interval: 5s
17+
interval: 3s
18+
timeout: 30s
2519
retries: 5
26-
start_period: 5s
27-
start_interval: 5s
28-
volumes:
29-
- /var/run/docker.sock:/var/run/docker.sock:ro
30-
ports:
31-
- 7007:7007
20+
start_period: 30s
3221

3322
networks:
3423
proxy:

0 commit comments

Comments
 (0)