Initial checkin

This commit is contained in:
Radar231 2021-08-01 16:36:09 -04:00
commit 4f6fa68cdc
3 changed files with 47 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.env

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# nginx-radar231.com docker deployment
## Introduction
This is a docker-compose configuration to run an nginx container as
the radar231.com web site.
This configuration requires an instance of nginx-proxy-manager to act as a
reverse proxy for the web site.
## Links
* https://hub.docker.com/_/nginx
## Directories
<pre>
docker/
└── nginx_radar231.com
└── radar231.com
   └── html
   └── images
</pre>

22
docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
---
version: '3.2'
services:
#############################################################
radar231-com:
container_name: radar231-nginx
image: nginx
restart: unless-stopped
# when used with nginx-proxy-manager, we don't need to expose
# any ports, as npm connects to the container's port
# ports:
# - '80:80'
volumes:
- ./radar231.com/html/:/usr/share/nginx/html
networks:
default:
external: true
name: npm-backend
# EOF