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.

21 lines
410 B
YAML

version: '3.8'
services:
backend:
build:
context: .
dockerfile: ./Dockerfile
environment:
- NEXT_PUBLIC_MEDUSA_BACKEND_URL=http://backend:9000
- NEXT_PUBLIC_BASE_URL=http://localhost:8000
- POSTGRES_URL=postgres://postgres:123456@postgres/medusa-TBcY
restart: always
ports:
- 8000:8000
networks:
- medusa
networks:
medusa:
external: true