https://github.com/mateusz-lisowski/caddy-stencil
Caddy web reverse proxy server stencil setup with docker and docker-compose.
https://github.com/mateusz-lisowski/caddy-stencil
caddy docker docker-compose
Last synced: 2 months ago
JSON representation
Caddy web reverse proxy server stencil setup with docker and docker-compose.
- Host: GitHub
- URL: https://github.com/mateusz-lisowski/caddy-stencil
- Owner: mateusz-lisowski
- Created: 2025-04-09T20:46:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-10T12:31:49.000Z (about 1 year ago)
- Last Synced: 2025-07-04T06:44:56.494Z (12 months ago)
- Topics: caddy, docker, docker-compose
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Caddy reverse proxy server
Standard Caddy web server deployed with docker compose.
## !!! Important !!!
As caddy is going to work as a reverse proxy with another docker compose stacks,
you need to create an external docker network first.
After that, use the name of the network to connect to other docker stacks.
Remember to remove port mapping from all docker-compose files,
as Caddy is going to handle them automatically.
You are unable to use this project from the get-go.
You will have to change the **caddy/Caddyfile**
and adjust it to your actual services.
## Helpful commands
Below, you can find some helpful commands to set up the project properly.
### Create external docker network for all docker-compose stacks
```commandline
docker network create caddy-proxy-network
```