Guest User

Untitled

a guest
May 9th, 2024
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. version: "3.2"
  2.  
  3. services:
  4.  
  5. front:
  6. image: ghcr.io/eveseat/seat:5
  7. restart: always
  8. command: web
  9. volumes:
  10. - "seat-storage:/var/www/seat/storage"
  11. - ./packages:/var/www/seat/packages:ro # development only
  12. env_file:
  13. - .env
  14. depends_on:
  15. - cache
  16. networks:
  17. - seat-gateway
  18. - seat-internal
  19. - mainframenet
  20. logging:
  21. driver: "json-file"
  22. options:
  23. max-size: "10Mb"
  24. max-file: "5"
  25. ports:
  26. - 8080:7575
Advertisement
Add Comment
Please, Sign In to add comment