We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
would be helpful to have a command like this in the docs for docker compose
you can even remove the need for an open port if you set it up with
swag
:Now I can access it with https://bb.<my_domain>.com
The text was updated successfully, but these errors were encountered: