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

25 lines
351 B

  1. version: "3.11"
  2. services:
  3. backend:
  4. build: app
  5. ports:
  6. - "8000:2764"
  7. depends_on:
  8. - db
  9. db:
  10. image: "postgres"
  11. restart: always
  12. environment:
  13. POSTGRES_USER: VMSBase
  14. POSTGRES_PASSWORD: VMSBasePass
  15. POSTGRES_DB: VMSData
  16. POSTGRES_PORT: 5432
  17. expose:
  18. - "5432"
  19. networks:
  20. practice: