schubidos commented on issue #8747: URL: https://github.com/apache/apisix/issues/8747#issuecomment-1416260313
### Update I could run the expose-api tutorial (all steps as described) successfully with the Docker installation on Debian Bullseye. So doc seems to be OK and my initial problem most likely is related to the not supported Windows environment. However, I had to change the docker-compose.yml to make it run. ``` git clone https://github.com/apache/apisix-docker.git cd apisix-docker/example ``` Change apache/apisix container to version 2.99.0-debian in docker-compose.yml solved the problem ``` apisix: #image: apache/apisix:latest image: apache/apisix:2.99.0-debian ``` With the original configuration (apache/apisix:latest and also apache/apisix:3.1.0-debian) the apisix container failed to start, the error was: ``` /usr/local/openresty//luajit/bin/luajit ./apisix/cli/apisix.lua init_etcd nginx: [alert] could not open error log file: open() "/usr/local/apisix/logs/error.log" failed (13: Permission denied) 2023/02/03 17:19:16 [emerg] 1#1: open() "/usr/local/apisix/logs/error.log" failed (13: Permission denied) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
