initial commit

This commit is contained in:
Mathias Beaulieu-Duncan
2024-02-19 14:43:34 -05:00
commit ba65f9c2d0
3 changed files with 18 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
config/*
!config/.gitkeep
View File
+16
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