File size: 333 Bytes
d0dc3ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
services:
  postgres:
    image: postgres:16
    environment:
      POSTGRES_DB: aida
      POSTGRES_USER: aida
      POSTGRES_PASSWORD: aida_dev_password
    ports:
      - "5432:5432"
    volumes:
      - postgres-data:/var/lib/postgresql/data

  redis:
    image: redis:7
    ports:
      - "6379:6379"

volumes:
  postgres-data: