Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. version: "3.7"
  2. services:
  3. postgresql:
  4. restart: always
  5. image: postgres
  6. container_name: "postgres_db"
  7. ports:
  8. - "5432:5432"
  9. environment:
  10. - DEBUG=false
  11. - DB_USER=
  12. - DB_PASS=
  13. - DB_NAME=
  14. - DB_TEMPLATE=
  15. - DB_EXTENSION=
  16. - REPLICATION_MODE=
  17. - REPLICATION_USER=
  18. - REPLICATION_PASS=
  19. - REPLICATION_SSLMODE=
  20. volumes:
  21. - ./postgres/data:/var/lib/postgresql/data
  22. - ./postgres/initdb:/docker-entrypoint-initdb.d
  23.  
  24. ora2pg:
  25. image: flockers/ora2pg
  26. container_name: "ora2pg_client"
  27. environment:
  28. - DB_HOST=127.0.0.1
  29. - DB_SID=xe
  30. - ORA2PG_USER=MAX
  31. - DB_PASS=MAX
  32. volumes:
  33. - ./ora2pg/export:/export
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement