Skip to content

Instantly share code, notes, and snippets.

@zhao-li
Created July 21, 2019 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zhao-li/09c606ce41a55b450e29c8951dec5654 to your computer and use it in GitHub Desktop.
Save zhao-li/09c606ce41a55b450e29c8951dec5654 to your computer and use it in GitHub Desktop.
One possible solution to docker-compose exercise: https://zhaol.github.io/ee491f/#docker-compose-exercises
version: '3'
services:
web-server:
image: nginx:1.17.1
ports:
- "8080:80"
app-server:
image: tomcat:9.0.12
ports:
- "8888:8080"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment