You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
655 B
YAML

version: '3.8'
services:
backend:
build:
context: .
dockerfile: ./Dockerfile
environment:
- MEDUSA_ADMIN_ONBOARDING_NEXTJS_DIRECTORY=/medusa-frontend
volumes:
- ./medusa-frontend:/medusa-frontend
restart: always
ports:
- 9000:9000
depends_on:
- postgres
- redis
postgres:
image: postgres:14
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: "123456"
POSTGRES_DB: medusa-TBcY
volumes:
- ./postgres-data:/var/lib/postgresql/data
redis:
image: redis:latest
restart: always
volumes:
- ./redis-data:/data