10 lines
169 B
YAML
10 lines
169 B
YAML
version: '3'
|
|
services:
|
|
web:
|
|
image: httpd:latest
|
|
container_name: webFullStack
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./srv:/usr/local/apache2/htdocs
|