mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 10:43:35 +02:00
10 lines
124 B
YAML
10 lines
124 B
YAML
|
version: "3.7"
|
||
|
services:
|
||
|
web:
|
||
|
build: app
|
||
|
ports:
|
||
|
- '80:80'
|
||
|
volumes:
|
||
|
- ./app:/var/www/html/
|
||
|
|