Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. pgsql:
  2. image: postgres:9.6
  3. restart: always
  4. environment:
  5. TZ: Europe/Stockholm
  6. POSTGRES_PASSWORD: <redacted>
  7. ports:
  8. - 127.0.0.1:5432:5432
  9. volumes:
  10. - /var/lib/postgresql/data:/var/lib/postgresql/data
  11.  
  12.  
  13. pgadmin:
  14. image: dockage/phppgadmin
  15. restart: always
  16. environment:
  17. TZ: Europe/Stockholm
  18. PHP_PG_ADMIN_SERVER_HOST: pgsql
  19. VIRTUAL_HOST: phppgadmin.poe-racing.com
  20. VIRTUAL_PORT: 80
  21. LETSENCRYPT_HOST: phppgadmin.poe-racing.com
  22. LETSENCRYPT_EMAIL: ciubhran@gmail.com
  23. links:
  24. - pgsql
  25.  
  26. api:
  27. image: poe_racing_api
  28. restart: always
  29. links:
  30. - pgsql
  31. environment:
  32. TZ: Europe/Stockholm
  33. VIRTUAL_HOST: api.poe-racing.com
  34. VIRTUAL_PORT: 80
  35. LETSENCRYPT_HOST: api.poe-racing.com
  36. LETSENCRYPT_EMAIL: ciubhran@gmail.com
  37.  
  38. importer:
  39. image: poe_racing_importer
  40. restart: always
  41. environment:
  42. TZ: Europe/Stockholm
  43. POE_RACING_REALM: pc
  44. links:
  45. - pgsql
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement