diff --git a/ctiomag/docker-compose.yml b/ctiomag/docker-compose.yml new file mode 100644 index 0000000..c8e2789 --- /dev/null +++ b/ctiomag/docker-compose.yml @@ -0,0 +1,21 @@ +# a simple web page developed on OMEGA using NICEPAGE +# accessed via https://ctio.johnsnexus.click; this replaced the site developed on GHOST +# data files held on Production cluster +# +services: + ctiomag: + image: httpd:latest + container_name: ctiomag + deploy: + replicas: 1 + restart: on-failure + ports: + - 8877:80 + volumes: + - /media/gv0/ctiomag:/usr/local/apache2/htdocs + networks: + - caddy_net + +networks: + caddy_net: + external: true \ No newline at end of file