Skip to content

Instantly share code, notes, and snippets.

@chowdhary987
Forked from avishwakarma/docker-compose.yml
Created May 1, 2019 08:18
Show Gist options
  • Save chowdhary987/cb2ff65c44c59452b8b1ce4c83484efe to your computer and use it in GitHub Desktop.
Save chowdhary987/cb2ff65c44c59452b8b1ce4c83484efe 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