diff --git a/.gitignore b/.gitignore index d19c362..8046499 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ go.work # End of https://www.toptal.com/developers/gitignore/api/go +data/ \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3dae17f --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ + +# 初始化 Git 仓库 +.PHONY: git-init conf-init +git-init: + @if [ ! -d .git ]; then \ + echo "Initializing git repository..."; \ + git init; \ + git add .; \ + git commit -m "Initial commit"; \ + else \ + echo "Git repository already initialized."; \ + fi + +conf-init: + @echo "Copying configuration files..." + -@mkdir data + @cp -r ./src/conf data/ + +.PHONY: run-cli run-server run-all +run-cli: + @echo "Starting client services..." + @docker compose --profile client up -d --force-recreate --build + +run-server: + @echo "Starting server services..." + @docker compose --profile server up -d --force-recreate --build + +run-all: + @echo "Starting all services..." + @docker compose --profile server --profile client up -d --force-recreate --build diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..34c3d4b --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,35 @@ +services: + frp-server: + container_name: frps + image: gofrps:dev + build: + context: ./src + dockerfile: dockerfiles/Dockerfile-for-frps + command: ["-c", "/app/frps.ini"] + profiles: + - server + volumes: + - ./data:/app + - /etc/timezone:/etc/timezone:ro + ports: + - "7000:7000" # Adjust as needed + - "7500:7500" # Adjust as needed + + frp-client: + container_name: frpc + image: gofrpc:dev + build: + context: ./src + dockerfile: dockerfiles/Dockerfile-for-frpc + command: ["-c", "/app/frpc.ini"] + profiles: + - client + volumes: + - ./data:/app + - /etc/timezone:/etc/timezone:ro + +networks: + default: + driver: bridge + name: local + external: true \ No newline at end of file