docker compose file
This commit is contained in:
parent
a1e817d553
commit
c46d5d8366
2 changed files with 12 additions and 2 deletions
10
docker-compose.yml
Normal file
10
docker-compose.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
services:
|
||||
app:
|
||||
container_name: nginx-linkery
|
||||
image: nginx-linkery
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
restart: always
|
||||
ports:
|
||||
- "9299:8080"
|
|
@ -7,8 +7,8 @@ http {
|
|||
sendfile on;
|
||||
|
||||
server {
|
||||
listen 8040;
|
||||
listen [::]:8040;
|
||||
listen 8080;
|
||||
listen [::]:8080;
|
||||
|
||||
resolver 127.0.0.11;
|
||||
autoindex off;
|
||||
|
|
Loading…
Add table
Reference in a new issue