TofuStack/docker-compose.yaml

22 lines
406 B
YAML
Raw Normal View History

2024-06-26 21:57:52 +00:00
version: '3.8'
2024-05-25 06:02:26 +00:00
services:
postgres:
image: postgres:latest
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
2024-06-26 21:57:52 +00:00
- '5432:5432'
2024-05-25 06:02:26 +00:00
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:latest
ports:
2024-06-26 21:57:52 +00:00
- '6379:6379'
2024-05-25 06:02:26 +00:00
volumes:
- redis_data:/data
volumes:
postgres_data:
redis_data: