saasitone/docker-compose.yml

18 lines
417 B
YAML
Raw Normal View History

2021-12-05 17:56:38 -08:00
version: "3"
services:
cache:
2021-12-05 17:56:38 -08:00
image: "redis:alpine"
2022-11-04 15:49:25 -07:00
container_name: pagoda_cache
2021-12-05 17:56:38 -08:00
ports:
2023-01-25 14:49:13 -08:00
- "127.0.0.1:6379:6379"
db:
# PG 16 is currenly not supported https://github.com/ent/ent/issues/3750
image: postgres:15-alpine
2022-11-04 15:49:25 -07:00
container_name: pagoda_db
ports:
2023-01-25 14:49:13 -08:00
- "127.0.0.1:5432:5432"
environment:
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=admin
- POSTGRES_DB=app