diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fc11c80 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +build: + sudo docker build -t yaf . +run: + sudo docker compose up -d diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7e8fb2e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3.9' +services: + jaf: + image: jaf + volumes: + - '/path/to/local/filedir:/var/www/yaf' + - '/path/to/your/yaf.conf:/app/yaf.conf' + ports: + - '4712:4711' +