Files
stAndrews/docker-compose.yml
Rob Wiederstein 2839feef9e
All checks were successful
Deploy stAndrews / deploy (push) Successful in 2s
Document deployment problems and fix volume mounts
2026-03-09 11:42:09 -04:00

18 lines
395 B
YAML

services:
shiny:
build: .
container_name: standrews_shiny
restart: always
ports:
- "127.0.0.1:${PORT}:3838"
environment:
- SHINY_LOG_STDERR=1
volumes:
- ./data:/srv/shiny-server/data
- ./www:/srv/shiny-server/www
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3838/"]
interval: 1m
timeout: 10s
retries: 3