14 lines
363 B
YAML
14 lines
363 B
YAML
services:
|
|
qna-viewer:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
env_file:
|
|
# Also load the .env file for the runtime container environment (for the entrypoint script).
|
|
- viewer/.env
|
|
ports:
|
|
# Map port on the host to port 80 in the container
|
|
- "8073:80"
|
|
restart: unless-stopped
|
|
container_name: qna-viewer-react
|