mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 04:57:37 +03:00
20 lines
No EOL
403 B
YAML
20 lines
No EOL
403 B
YAML
version: '3'
|
|
|
|
services:
|
|
quetre:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- "NODE_ENV=production"
|
|
- "PORT=3000"
|
|
- "CACHE_PERIOD=1h"
|
|
- "REDIS_URL=redis:6379" # optional
|
|
- "REDIS_TTL=3600"
|
|
redis:
|
|
image: docker.io/redis:alpine
|
|
container_name: redis
|
|
restart: unless-stopped |