Skip to content

Instantly share code, notes, and snippets.

@Ritcabuchi
Created November 9, 2018 04:39
Show Gist options
  • Save Ritcabuchi/e01f36816ef8cb8db08eed7af0638838 to your computer and use it in GitHub Desktop.
Save Ritcabuchi/e01f36816ef8cb8db08eed7af0638838 to your computer and use it in GitHub Desktop.
version: '3'
services:
app:
image: ritcabuchi/mydocker:1
ports:
- "3000:3000"
networks:
- backend
- frontend
redis:
image: redis:4.0.0-alpine
command: ["redis-server", "--appendonly", "yes"]
networks:
- backend
volumes:
- redis-data:/data
networks:
backend:
frontend:
volumes:
redis-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment