https://github.com/gurleensethi/caddy-docker-hello-world
https://github.com/gurleensethi/caddy-docker-hello-world
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gurleensethi/caddy-docker-hello-world
- Owner: gurleensethi
- Created: 2023-06-12T06:11:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-12T06:14:07.000Z (over 2 years ago)
- Last Synced: 2025-01-29T18:30:47.656Z (9 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# caddy-docker-hello-world
Running using docker:
```bash
docker run --rm --name caddy -p 8080:80 -v ${PWD}/Caddyfile:/etc/caddy/Caddyfile caddy:latest
```With Compose:
```yaml
version: '3.8'services:
caddy:
image: caddy:latest
ports:
- 8080:80
volumes:
- ${PWD}/Caddyfile:/etc/caddy/Caddyfile
``````bash
docker compose up
```