Advertisement
Guest User

Untitled

a guest
Jan 11th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. services:
  2. db:
  3. image: codenvy/mysql // Base image
  4. environment:
  5. MYSQL_USER: petclinic
  6. MYSQL_PASSWORD: password
  7. mem_limit: 2147483648 // Memory used by the machine
  8. command: [service, mysql, start] // Execute “service mysql start”
  9. volumes_from: dev-machine // Share a volume mount from ‘dev-machine’
  10.  
  11.  
  12. dev-machine:
  13. image: codenvy/ubuntu_jdk8
  14. mem_limit: 2147483648
  15. expose: 3000 // Expose port 3000
  16. depends_on:
  17. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement