mirror of
https://github.com/Team4388/ScoutingApp2022.git
synced 2026-06-08 16:28:04 -06:00
29 lines
711 B
YAML
29 lines
711 B
YAML
version: "3"
|
|
|
|
services:
|
|
scouting-webserver-prod:
|
|
container_name: "production"
|
|
env_file:
|
|
- .env
|
|
build:
|
|
context: ./webserver
|
|
dockerfile: ./Dockerfile.prod
|
|
volumes:
|
|
- ./webserver:/app
|
|
# - ./webserver/build/:/app/build/
|
|
- ./webserver/build:/nooo/build
|
|
# - '/app/node_modules'
|
|
# - './webserver/public:/app/public/'
|
|
# - '/app/public/'
|
|
# - '/app/src/'
|
|
# - ./webserver/nginx:/etc/nginx/:ro
|
|
# ssl-proxy:
|
|
# image: fsouza/docker-ssl-proxy
|
|
# ports:
|
|
# - "80:80"
|
|
# - "443:443"
|
|
# environment:
|
|
# - DOMAIN=10.43.88.1
|
|
# - TARGET_PORT=8080
|
|
# - TARGET_HOST=scouting-webserver-prod
|
|
# - SSL_PORT:443 |