Created
October 17, 2017 05:28
-
-
Save eva-thientran/7450631306313941f6ee7269e52811cd 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: "2" | |
services: | |
app: | |
build: ./docker/app | |
image: "php-aucfan:v1" | |
ports: | |
- "8080:80" | |
restart: "no" | |
volumes: | |
- "../:/deploy/aucfan-ssl-v2/" | |
working_dir: /deploy/aucfan-ssl-v2/ | |
web: | |
build: ./docker/web | |
depends_on: | |
- app | |
image: "nginx-aucfan:v1" | |
ports: | |
- "80:80" | |
- "443:443" | |
restart: "no" | |
volumes: | |
- "../:/deploy/aucfan-ssl-v2/" | |
working_dir: /deploy/aucfan-ssl-v2/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment