mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 04:03:39 +00:00
11 lines
110 B
YAML
11 lines
110 B
YAML
version: '3'
|
|
services:
|
|
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
|
|
redis:
|
|
image: "redis:alpine"
|