forked from coleam00/remote-agentic-coding-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.cloud.yml
More file actions
39 lines (35 loc) · 829 Bytes
/
docker-compose.cloud.yml
File metadata and controls
39 lines (35 loc) · 829 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
# Cloud deployment configuration with Caddy reverse proxy
# Usage: docker compose -f docker-compose.yml -f docker-compose.cloud.yml up -d
services:
caddy:
image: caddy:2-alpine
container_name: remote-agent-caddy
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/udp" # HTTP/3
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
networks:
- remote-agent-network
depends_on:
- app
app:
# Override ports - Caddy proxies internally, no need to expose 3000
ports: []
expose:
- "3000"
restart: unless-stopped
networks:
- remote-agent-network
volumes:
caddy_data:
driver: local
caddy_config:
driver: local
networks:
remote-agent-network:
driver: bridge