-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
48 lines (44 loc) · 1.03 KB
/
compose.yaml
File metadata and controls
48 lines (44 loc) · 1.03 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
services:
caddy:
image: caddy:latest
restart: unless-stopped
ports:
- ${CADDY_HTTP}
- ${CADDY_HTTPS}
volumes:
- ./conf:/etc/caddy
- caddy_data:/data
- caddy_config:/config
env_file:
.env
anubis:
image: ghcr.io/techarohq/anubis:latest
pull_policy: always
environment:
BIND: ${ANUBIS_PORT}
TARGET: ${ANUBIS_TARGET}
POLICY_FNAME: "/data/cfg/botPolicy.yml"
volumes:
- "./conf/botPolicy.yml:/data/cfg/botPolicy.yml"
static-web-server:
build:
dockerfile: ./conf/Containerfile
container_name: "static-web-server"
ports:
- ${SWS_PORT}
restart: unless-stopped
environment:
- SERVER_ROOT=${SWS_SERVER_ROOT}
- SERVER_CONFIG_FILE=${SWS_CONFIG_FILE}
volumes:
- ./conf/server.toml:${SWS_CONFIG_FILE}
php:
container_name: status
user: "${UID}:${GID}"
build:
dockerfile: ./monitor/conf/Containerfile
volumes:
- ./monitor/src:/var/www/html
volumes:
caddy_data:
caddy_config: