-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (42 loc) · 982 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (42 loc) · 982 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '3.8'
services:
homer:
image: b4bz/homer:latest
container_name: intertwin-dashboard
# ports:
# - "${HOMER_PORT}:8080"
environment:
- SIDECAR_STATUS_ENABLED=true
volumes:
- ./assets:/www/assets
restart: unless-stopped
networks:
- internal_network
cors-anywhere:
image: sourabh385/cors-anywhere:latest
container_name: cors-anywhere
environment:
- NODE_TLS_REJECT_UNAUTHORIZED=0
- PORT=5000
- CORSANYWHERE_PATH=/cors
# ports:
# - "${CORS_PORT}:5000"
restart: unless-stopped
networks:
- internal_network
caddy:
image: caddy:latest
container_name: caddy-proxy
ports:
- "${ACCESS_PORT}:8083"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./caddy_data:/data
- ./caddy_config:/config
networks:
- internal_network
restart: unless-stopped
networks:
internal_network:
driver: bridge
name: internal_network