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.

29 lines
562 B

  1. version: '3.6'
  2. services:
  3. dbpg:
  4. image: postgres
  5. restart: always
  6. environment:
  7. POSTGRES_PASSWORD: postgres
  8. volumes:
  9. - databasepg:/var/lib/postgresql/data
  10. - ./hostfiles:/hostfiles
  11. adminer:
  12. image: adminer
  13. restart: always
  14. ports:
  15. - 8080:8080
  16. pgadmin:
  17. image: dpage/pgadmin4
  18. restart: always
  19. environment:
  20. PGADMIN_DEFAULT_EMAIL: info@wpstudio.ru
  21. PGADMIN_DEFAULT_PASSWORD: postgres
  22. ports:
  23. - "83:80"
  24. volumes:
  25. - ./hostfiles/pgadmin:/var/lib/pgadmin
  26. volumes:
  27. databasepg: