Created
September 10, 2018 16:37
-
-
Save demidovsky/a37ec4ca0c963b7b2aae2e52fc688513 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' | |
| services: | |
| web: | |
| image: gcr.io/.../project-node | |
| restart: always | |
| logging: | |
| options: | |
| max-size: "10M" | |
| max-file: "10" | |
| ports: | |
| - "3000:3000" | |
| depends_on: | |
| - redis | |
| links: | |
| - redis:redis | |
| environment: | |
| - HOST=redis | |
| - PORT=3000 | |
| - NODE_ENV=production | |
| redis: | |
| image: gcr.io/.../project-redis | |
| restart: always | |
| logging: | |
| options: | |
| max-size: "10M" | |
| max-file: "10" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment