Advertisement
Guest User

Untitled

a guest
Apr 9th, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. version: '3.8'
  2.  
  3. services:
  4. ryot:
  5. image: ghcr.io/ignisda/ryot:latest
  6. restart: unless-stopped
  7. environment:
  8. - DATABASE_URL=postgres://postgres:postgres@ryot-db:5432/postgres
  9. - TZ=America/New_York
  10. ports:
  11. - "30042:8000"
  12. pull_policy: always
  13. container_name: ryot
  14.  
  15.  
  16. ryot-db:
  17. image: postgres:16-alpine
  18. restart: unless-stopped
  19. volumes:
  20. - ./config/ryot:/var/lib/postgresql/data
  21. environment:
  22. - POSTGRES_PASSWORD=postgres
  23. - POSTGRES_USER=postgres
  24. - POSTGRES_DB=postgres
  25. - TZ=America/New_York
  26. container_name: ryot-db
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement