27 lines
572 B
YAML
27 lines
572 B
YAML
services:
|
|
db:
|
|
image: postgres:17
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: opencut
|
|
POSTGRES_PASSWORD: opencutthegoat
|
|
POSTGRES_DB: opencut
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- "6379:6379"
|
|
serverless-redis-http:
|
|
ports:
|
|
- "8079:80"
|
|
image: hiett/serverless-redis-http:latest
|
|
environment:
|
|
SRH_MODE: env
|
|
SRH_TOKEN: example_token
|
|
SRH_CONNECTION_STRING: "redis://redis:6379"
|
|
volumes:
|
|
postgres_data:
|