proxyraye-nextjs/docker-compose.yaml

32 lines
670 B
YAML
Raw Permalink Normal View History

2024-04-27 18:44:23 +00:00
version: '3.8'
services:
proxyraye:
# image: lamacchinadesiderante/proxyraye:latest
restart: always
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:3000/api/status || exit 1
interval: 60s
retries: 5
start_period: 20s
timeout: 10s
2024-04-27 18:44:23 +00:00
build: .
ports:
- "8069:3000"
2024-05-17 00:24:41 +00:00
environment:
- ENABLE_REDIS=true
- REDIS_URL=redis://redis:6379
2024-05-24 21:09:56 +00:00
# Please generate a new encoding key with command `pwgen 20 1`, decomment following variable and insert result into it:
# - ENCODING_KEY=
2024-05-17 00:24:41 +00:00
redis:
image: redis:alpine
container_name: redis
restart: unless-stopped