Linking django and mysql containers using docker-compose
问题 I've been following with the docker-compose tutorial here (linking django and postgres container). Although I was able to go through with the tutorial I'm however not able to proceed with repeating the same using a mysql container. The following are my dockerfile and docker-compose.yml ` db: image: mysql web: build: . command: python manage.py runserver 0.0.0.0:8000 volumes: - .:/code ports: - "8000:8000" links: - db:db ` dockerfile FROM python:2.7 RUN mkdir /code WORKDIR /code RUN pip