Skip to content

Instantly share code, notes, and snippets.

@avishwakarma
Last active May 1, 2019 08:18
Show Gist options
  • Save avishwakarma/63209a87a51389a70558c703f1744f2b to your computer and use it in GitHub Desktop.
Save avishwakarma/63209a87a51389a70558c703f1744f2b to your computer and use it in GitHub Desktop.
version: '3'
services:
myapp:
container_name: myapp
restart: always
build: .
ports:
- '4300:4300'
- '4301:4301'
links:
- redis
- mongo
mongo:
container_name: myapp-mongo
image: 'mongo:4'
redis:
container_name: myapp-redis
image: 'redis:4.0.11'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment