mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 10:18:07 +02:00
change mysql version in readme to match compose file Signed-off-by: Charlie Arehart <charlie@carehart.org>
10 lines
144 B
YAML
10 lines
144 B
YAML
version: "3.7"
|
|
services:
|
|
frontend:
|
|
build: frontend
|
|
ports:
|
|
- 80:80
|
|
depends_on:
|
|
- backend
|
|
backend:
|
|
build: backend
|