14 lines
279 B
YAML
14 lines
279 B
YAML
version: "3.2"
|
|
|
|
services:
|
|
website:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: "therbron.com"
|
|
ports:
|
|
- 8000:80
|
|
volumes:
|
|
- ./out:/usr/share/nginx/html
|
|
restart: unless-stopped
|