Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Docker Compose and Swag config to docs #92

Open
BinaryShrub opened this issue Jan 6, 2024 · 0 comments
Open

Add Docker Compose and Swag config to docs #92

BinaryShrub opened this issue Jan 6, 2024 · 0 comments

Comments

@BinaryShrub
Copy link

would be helpful to have a command like this in the docs for docker compose

  backblaze:
    container_name: backblaze
    image: tessypowder/backblaze-personal-wine:latest
    restart: always
    ports:
      - "5800:5800"
    volumes:
      - /home/<user>/backblaze:/config
      - /data:/drive_d

you can even remove the need for an open port if you set it up with swag:

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    server_name bb.*;

    include /config/nginx/ssl.conf;

    client_max_body_size 0;

    location / {
        include /config/nginx/proxy.conf;
        include /config/nginx/resolver.conf;
        
        proxy_pass http://backblaze:5800;
    }

}

Now I can access it with https://bb.<my_domain>.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant