Date

Attendees

Goals

  • Review progress from Monday Web Team meeting
  • Set timezone on VM, and containers to EST

Discussion items

ItemWhoNotes
Review progress from Web Team meeting
  • Candy was not able to reproduce the Cross DST new Meeting bug when she built her environment locally to mimic Paul Scheidmantel's environment.
 Set Timezone on Docker Toolbox VM
  • Used instructions from: 

    boot2docker machine TZ settings - Docker Toolkit
    https://stackoverflow.com/questions/31836763/boot2docker-windows-change-timezone
    You want to set the timezone by copying from .../America/New_York to ./America-New_York.tz

    1. # You need to add some permanent settings to the docker machine as per the boot2docker FAQ
    2. # create /var/lib/boot2docker/bootlocal.sh in the docker machine
    3. # give exec flag chmod u+x bootlocal.sh
    4. # As described in the Tiny Core Linux forum and Wiki
    5. cd /var/lib/boot2docker
    6. # fetch and mount timezone data
    7. tce-fetch.sh tzdata.tcz
    8. mkdir ext
    9. sudo mount tzdata.tcz ext -t squashfs -o loop,ro,bs=4096
    10. cp ext/usr/local/share/zoneinfo/America/New_York ./America-New_York.tz
    11. # delete files that are no longer needed
    12. umount ext
    13. rm -rf ext tzdata.tcz
    14. America-New_York.tz should survive restarts of the docker machine
    15. # Finally, copy the timezone file when starting up docker-machine by adding the following to the bootlocal script
    16. #!/bin/sh
    17. cp /var/lib/boot2docker/America-New_York.tz /etc/localtime
    18. # You should see the correct time now when you enter date
Next meeting

 at 10 AM

Action items

  • Set timezone to EST in Docker Toolbox default VM.
  • Set timezone to EST in docker containers:
    • scheduledb_mongo_1
    • scheduledb_backend_1
    • scheduledb_frontend_1