DaanSelen
DaanSelen
> I don't think there's actual conflict, but I wanted to hold it off until next major release :) Thoughts?
@donaldzou Lets get this into 4.3 - I like these changes.
Testing it from: https://github.com/donaldzou/WGDashboard/tree/v4.3-dev-docker-refac
Does this still work?
``` import sqlite3 import vobject # Database connection DB_FILE = "contacts.db" VCF_FILE = "contacts.vcf" def create_table(): conn = sqlite3.connect(DB_FILE) cursor = conn.cursor() cursor.execute(''' CREATE TABLE IF NOT EXISTS friends (...
> Will fix it in the next release I think the next release is here, @goerdi are you satisfied?
> For @DaanSelen > > The site hosting docker is down: > >  > > I get this error when pulling docker:  > > I'd strongly recommend hosting...
> Hopefully my other comments add some context. Biggest question I have: is the docker container meant to be just the wireguard dashboard, or is it meant to run wireguard...
@hoggatt please check the new image I am working on called `dselen/wgdashboard:dev` I am using this compose to deploy it: ``` services: wireguard-dashboard: image: dselen/wgdashboard:dev restart: unless-stopped container_name: wire-dash environment:...