2021-04-15 11:47:59 +00:00
|
|
|
version: "3.2"
|
|
|
|
|
|
|
|
services:
|
|
|
|
website:
|
2021-04-18 14:05:55 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
container_name: "therbron.com"
|
2021-04-15 11:47:59 +00:00
|
|
|
ports:
|
2021-04-18 14:05:55 +00:00
|
|
|
- 8000:80
|
|
|
|
volumes:
|
|
|
|
- ./out:/usr/share/nginx/html
|
2021-04-15 11:47:59 +00:00
|
|
|
restart: unless-stopped
|