-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
62 lines (58 loc) · 1.54 KB
/
docker-compose.yml
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
version: '3.5'
services:
chat-logs:
image: starlitghost/desertbot-log:latest
container_name: chat-logs
build:
context: .
dockerfile: Dockerfile
networks:
- web
environment:
- ALLOW_OVERRIDE=true
volumes:
- ${LOG_DIR}:/logpath
labels:
- "traefik.domain=logs.${DOMAIN_DBCO}"
- "traefik.docker.network=web"
- "traefik.enable=true"
- "traefik.backend=chat-logs"
- "traefik.frontend.rule=Host:logs.${DOMAIN_DBCO}"
- "traefik.port=80"
- "traefik.protocol=http"
- "com.centurylinklabs.watchtower.enable=true"
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost"]
interval: 5m
timeout: 5s
retries: 3
restart: unless-stopped
chat-logs-test:
image: php:8.0-apache
container_name: chat-logs-test
networks:
- web
environment:
- ALLOW_OVERRIDE=true
volumes:
- ${PERSISTENT_DIR}/www:/var/www/html
- ${LOG_DIR}:/logpath
labels:
- "traefik.domain=logs-test.${DOMAIN_DBCO}"
- "traefik.docker.network=web"
- "traefik.enable=true"
- "traefik.backend=chat-logs-test"
- "traefik.frontend.rule=Host:logs-test.${DOMAIN_DBCO}"
- "traefik.port=80"
- "traefik.protocol=http"
- "com.centurylinklabs.watchtower.enable=true"
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost"]
interval: 5m
timeout: 5s
retries: 3
restart: unless-stopped
networks:
web:
external: true
# vim: tabstop=2 shiftwidth=2 expandtab