mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-14 06:13:33 +01:00
Trouble using go-proxy #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ExodosPavilion on GitHub (Mar 1, 2024).
I followed the instructions on the readme and go-proxy failed to install. It gave the following error:
Upon looking into it there really was no bin/go-proxy folder but there was a src/go-proxy folder so a quick edit in the Dockerfile to replace bin with src lead to this:
Seems like it can't find the go-proxy folder and its content so I edited the Dockerfile again so that
COPY src/go-proxy /usr/binbecomesCOPY src/go-proxy /usr/bin/go-proxyand diddocker compose up -dagainAnd I don't know how to fix even begin fixing that error.
My final Dockerfile for reference:
My compose.yml file for reference:
Any Idea on what I might be messing up when installing this?
@yusing commented on GitHub (Mar 2, 2024):
My bad sorry! I forgot to remove bin/ from gitignore, you can also run build.sh to build the go binary.
@yusing commented on GitHub (Mar 2, 2024):
Should now be fixed, please check~ I also tidied up the README for clearer instructions