Created
October 10, 2017 17:02
-
-
Save sirgalleto/6baeb55f2754f16f37d48174024534c0 to your computer and use it in GitHub Desktop.
Docker compose example
This file contains 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' | |
services: | |
web: | |
build: . | |
ports: | |
- 80:80 | |
- 3306:3306 | |
volumes: | |
- ./directory:/directory | |
redis: | |
image: "imagename" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment