initial commit

This commit is contained in:
Mathias Beaulieu-Duncan 2024-02-19 14:43:34 -05:00
commit ba65f9c2d0
Signed by untrusted user who does not match committer: mathias
GPG Key ID: 17DFF5425B1AB6BA
3 changed files with 18 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
config/*
!config/.gitkeep

0
config/.gitkeep Normal file
View File

16
docker-compose.yaml Normal file
View File

@ -0,0 +1,16 @@
version: '3'
services:
nginx:
restart: always
image: nginx:latest
ports:
- "80:80"
networks:
- nginx-network
volumes:
- ./config/:/etc/nginx/conf.d/:ro
networks:
nginx-network:
external: true