yusing / go-proxy

Easy to use reverse proxy with docker integration
MIT License
99 stars 4 forks source link

go-proxy wont start after container creation #5

Closed earvingad closed 5 months ago

earvingad commented 5 months ago

Hello,

  1. after building the docker container it won't start, you have to enter the container and manually start go-proxy
  2. it will fail to start due to missing schema folder/files.
    • In the Dockerfile it should be added the line COPY schema/ /app/schema

However, even after modifying the Dockerfile, go-proxy won't start automatically after starting the container.

yusing commented 5 months ago
  1. it will fail to start due to missing schema folder/files.
    • In the Dockerfile it should be added the line COPY schema/ /app/schema

yes you are right, will fix in the next commit

However, even after modifying the Dockerfile, go-proxy won't start automatically after starting the container.

after modifing the Dockerfile you have to rebuild it with docker compose up -d --build

yusing commented 5 months ago

Now should work, the Dockerfile is fixed

earvingad commented 5 months ago

Thank you! It is working now.