1
1
Fork 0

docker compose file

This commit is contained in:
Ava Gaiety W 2025-03-07 12:27:22 -07:00
parent a1e817d553
commit c46d5d8366
2 changed files with 12 additions and 2 deletions

10
docker-compose.yml Normal file
View file

@ -0,0 +1,10 @@
services:
app:
container_name: nginx-linkery
image: nginx-linkery
build:
context: .
dockerfile: Dockerfile
restart: always
ports:
- "9299:8080"

View file

@ -7,8 +7,8 @@ http {
sendfile on; sendfile on;
server { server {
listen 8040; listen 8080;
listen [::]:8040; listen [::]:8080;
resolver 127.0.0.11; resolver 127.0.0.11;
autoindex off; autoindex off;