Skip to content

Instantly share code, notes, and snippets.

@timfallmk
Last active August 15, 2016 22:57
Show Gist options
  • Save timfallmk/ed5fd3afc58832c4185496a72f5be97a to your computer and use it in GitHub Desktop.
Save timfallmk/ed5fd3afc58832c4185496a72f5be97a to your computer and use it in GitHub Desktop.
Example `docker-compose` file for a simple three tier web app
# This is a basic example `docker-compose.yml` file using a 3 tier web app.
service: api
image: apache:latest
links:
- db:database
service: frontend
image: ubuntu:latest
links:
- api
ports:
- "80:8080"
service: db
image: redis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment