mirror of
https://github.com/Team4388/ScoutingApp2022.git
synced 2026-06-08 16:28:04 -06:00
19 lines
361 B
YAML
19 lines
361 B
YAML
|
|
version: "3"
|
|
|
|
services:
|
|
scouting-webserver-nginx:
|
|
container_name: "production"
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
build:
|
|
context: ./webserver
|
|
dockerfile: ./Dockerfile.nginx
|
|
expose:
|
|
- 80
|
|
ports:
|
|
- "80:80/tcp"
|
|
volumes:
|
|
- ./build:/usr/share/nginx/html
|
|
- ./webserver/nginx:/etc/nginx/:ro |