docker-compose.yml 2.7 KB

12345678910111213
  1. version: '2'
  2. services:
  3. web:
  4. image: "hexasoftware.com:5000/myapp"
  5. # image: f080690e516f
  6. restart: always
  7. ports:
  8. - "8080:8080"
  9. mongodb:
  10. image: "mongo"
  11. volumes:
  12. - "/home/stdio/hexasoftware/database:/data/db"
  13. restart: always