Skip to content

Instantly share code, notes, and snippets.

@artemrogov
Created May 9, 2018 19:59
Show Gist options
  • Save artemrogov/339bed9a0dd9bdca0943b351749b0e76 to your computer and use it in GitHub Desktop.
Save artemrogov/339bed9a0dd9bdca0943b351749b0e76 to your computer and use it in GitHub Desktop.
docker-compose.yml
version: '2'
services:
mysql:
image: mysql:5.7
volumes:
- ./storage/docker/mysql:/var/lib/mysql
environment:
- "MYSQL_ROOT_PASSWORD=secret"
- "MYSQL_USER=app"
- "MYSQL_PASSWORD=secret"
- "MYSQL_DATABASE=app"
ports:
- "33061:3306"
redis:
image: redis:3.0
ports:
- "63791:6379"
@artemrogov
Copy link
Author

энвармент для докера

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment