We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424f02b commit f239ddcCopy full SHA for f239ddc
website/Dockerfile
@@ -0,0 +1,2 @@
1
+FROM php:7.4-apache
2
+RUN a2enmod rewrite
website/README.md
@@ -0,0 +1,10 @@
+# C# Data Visualization Website
+
3
+This folder contains source code for the website
4
+https://swharden.com/csdv
5
6
+## Run the Website Locally
7
8
+* Install [Docker](https://www.docker.com/)
9
+* `cd` into this folder and `docker-compose -p csdv up -d`
10
+* Navigate to [http://localhost:8082](http://localhost:8082)
website/docker-compose.yml
+version: "2"
+services:
+ csdv:
+ build:
+ context: .
+ dockerfile: ./Dockerfile
+ ports:
+ - "8082:80"
+ volumes:
+ - ./:/var/www/html
website/index.php
@@ -0,0 +1 @@
+hello
0 commit comments