diff --git a/custom/build-run.sh b/custom/build-run.sh new file mode 100644 index 0000000..dbe3040 --- /dev/null +++ b/custom/build-run.sh @@ -0,0 +1,2 @@ +docker build -t quartz-jpg .. +docker-compose up -d --force-recreate \ No newline at end of file diff --git a/custom/docker-compose.yml b/custom/docker-compose.yml new file mode 100644 index 0000000..b4f1244 --- /dev/null +++ b/custom/docker-compose.yml @@ -0,0 +1,14 @@ +version: '3.4' + +services: + quartz: + image: quartz-jpg + build: + context: . + dockerfile: Dockerfile + environment: + NODE_ENV: production + container_name: quartz + restart: always + ports: + - 8080:8080