Files
astro-website/docker-compose.yml
Santhosh Janardhanan 3b0b97f139
Some checks failed
ci / site (push) Has been cancelled
publish-image / publish (push) Has been cancelled
deploy without node
2026-02-10 02:52:14 -05:00

20 lines
405 B
YAML

services:
web:
image: ${WEB_IMAGE:-fast-website:local}
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:80"
redis:
image: redis:7-alpine
ports:
# Use 6380 to avoid colliding with any locally installed Redis on 6379.
- "6380:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 20