Skip to content

Instantly share code, notes, and snippets.

@demidovsky
Created September 10, 2018 16:37
Show Gist options
  • Select an option

  • Save demidovsky/a37ec4ca0c963b7b2aae2e52fc688513 to your computer and use it in GitHub Desktop.

Select an option

Save demidovsky/a37ec4ca0c963b7b2aae2e52fc688513 to your computer and use it in GitHub Desktop.
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