-
-
Save akoidan/df22ef43196f9f68f7db07455fb8593a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.3' | |
| services: | |
| db: | |
| image: mysql/mysql-server | |
| environment: | |
| MYSQL_ROOT_PASSWORD: 'Ilovepython' | |
| MYSQL_DATABASE: 'django' | |
| MYSQL_USER: 'pychat' | |
| MYSQL_PASSWORD: 'pypass' | |
| test: | |
| build: | |
| context: ../ | |
| dockerfile: ./docker/Dockerfileserver | |
| command: | |
| python manage.py runsslserver | |
| depends_on: | |
| - db | |
| links: | |
| - db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment