initial commit
This commit is contained in:
commit
ba65f9c2d0
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
config/*
|
||||||
|
!config/.gitkeep
|
0
config/.gitkeep
Normal file
0
config/.gitkeep
Normal file
16
docker-compose.yaml
Normal file
16
docker-compose.yaml
Normal 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
|
Loading…
Reference in New Issue
Block a user