docker-compose.yaml.old 525 B

12345678910111213141516171819202122232425262728
  1. # Use postgres/example user/password credentials
  2. version: '3.1'
  3. services:
  4. db:
  5. image: postgres
  6. restart: always
  7. environment:
  8. POSTGRES_PASSWORD: example
  9. volumes:
  10. - /dataimport:/var/dataimport
  11. adminer:
  12. image: adminer
  13. restart: always
  14. ports:
  15. - 1122:8080
  16. pgadmin:
  17. container_name: pgadmin4_container
  18. image: dpage/pgadmin4
  19. restart: always
  20. environment:
  21. PGADMIN_DEFAULT_EMAIL: [email protected]
  22. PGADMIN_DEFAULT_PASSWORD: root
  23. ports:
  24. - "5050:80"