Advertisement
y2kbug

psono

Jan 27th, 2021
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. version: '3.8'
  2. services:
  3. psono-database:
  4. container_name: psono-database
  5. image: postgres:9-alpine
  6. environment:
  7. POSTGRES_USER: psono
  8. POSTGRES_PASSWORD: psono
  9. volumes:
  10. - type: bind
  11. source: ./data/psono/postgres
  12. target: /var/lib/postgresql/data
  13. restart: unless-stopped
  14. psono-server:
  15. container_name: psono-server
  16. image: psono/psono-server:latest
  17. volumes:
  18. - type: bind
  19. source: ./config/psono/server-settings.yaml
  20. target: /root/.psono_server/settings.yaml
  21. sysctls:
  22. - net.core.somaxconn=65535
  23. restart: unless-stopped
  24. psono-client:
  25. container_name: psono-client
  26. image: psono/psono-client:latest
  27. volumes:
  28. - type: bind
  29. source: ./config/psono/client-config.json
  30. target: /usr/share/nginx/html/config.json
  31. restart: unless-stopped
  32. psono-admin:
  33. container_name: psono-admin
  34. image: psono/psono-admin-client:latest
  35. volumes:
  36. - type: bind
  37. source: ./config/psono/client-config.json
  38. target: /usr/share/nginx/html/portal/config.json
  39. restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement