Giter VIP home page Giter VIP logo

Comments (2)

TR-SLimey avatar TR-SLimey commented on July 28, 2024 1

It seems like using the version you gave in your comment fixed the problem. Thanks!

from wg-manager.

simonlerpard avatar simonlerpard commented on July 28, 2024

Does it work if you're using the assigned ip instead of localhost?

It might also be that you're missing the host variable. And no I can also see that it's also missing in the docker example config. So try this to run this:

docker run -d \
--cap-add NET_ADMIN \
--name wg-manager \
-p "51800-51900:51800-51900/udp" \
-p "8888:8888" \
-v wg-manager:/config \
-e HOST="0.0.0.0" \
-e PORT="8888" \
-e ADMIN_USERNAME="admin" \
-e ADMIN_PASSWORD="admin" \
perara/wg-manager

I'm currently running it using docker-compose using this config. Might be a good idea for you to try as well :)

wireguard:
  container_name: wg-manager
  image: perara/wg-manager
  restart: always
  cap_add:
    - NET_ADMIN
  ports:
     - 51800-51900:51800-51900/udp
     - 8888:8888
  volumes:
    - ./wg-manager:/config
  environment:
    HOST: 0.0.0.0
    PORT: 8888
    ADMIN_PASSWORD: admin
    ADMIN_USERNAME: admin
    WEB_CONCURRENCY: 1

from wg-manager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.