> For the complete documentation index, see [llms.txt](https://dev-notes.vinguyen.blog/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev-notes.vinguyen.blog/notes/docker-compose-samples/docker-compose-caddy-as-reverse-proxy.md).

# docker-compose caddy as reverse proxy

**Usage:**

```
docker network create caddy
docker compose -f caddy-compose.yml up -d
docker compose -f docker-compose.yml up -d
```

* Make sure port 80, 443 is open and DNS config of domain map to ip of server

**caddy-compose.yml**

```yaml

version: "3.7"
services:
  caddy:
    image: lucaslorentz/caddy-docker-proxy:2.8-alpine
    ports:
      - 80:80
      - 443:443
    environment:
      - CADDY_INGRESS_NETWORKS=caddy
    networks:
      - caddy
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - caddy_data:/data
    restart: unless-stopped

networks:
  caddy:
    external: true

volumes:
  caddy_data: {}

```

**docker-compose.yml**

```yaml
version: '3.3'

services:
  # https://mockoon.com
  mockoon:
    image: mockoon/cli:latest
    restart: unless-stopped
    networks:
      - caddy
      - frontend
      - backend
    labels:
      caddy: mockoon.dummydomain.com
      caddy.reverse_proxy: '{{upstreams 3000}}'
    volumes:
      - ./dev/mockoon/data.json:/data
    command: -d data -p 3000


networks:
  caddy:
    external: true
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dev-notes.vinguyen.blog/notes/docker-compose-samples/docker-compose-caddy-as-reverse-proxy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
