docker-compose.sync.yml 360 B

1234567891011121314151617
  1. version: '2'
  2. services:
  3. ### Applications Code Container #############################
  4. applications:
  5. image: tianon/true
  6. volumes:
  7. - applications-sync:/var/www:nocopy # nocopy is required
  8. ### Volumes Setup #############################################
  9. volumes:
  10. applications-sync:
  11. external:
  12. name: "applications-docker-sync"