Files
echospace/dev/docker-compose.yml

18 lines
366 B
YAML

services:
psql:
image: postgres
user: 1000:1000
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: aegkerkoebkdsbjwlkthwjthlkewbmklbejlk
volumes:
- ./psql:/var/lib/postgresql/data
ports:
- 5432:5432
redis:
image: redis:alpine
user: 1000:1000
volumes:
- ./redis:/data
ports:
- 6379:6379