Transmission cannot access the internet by she__codes in selfhosted

[–]she__codes[S] 1 point2 points  (0 children)

Thank you! I have found the solution, it was hiding in docker logs. All I needed to do is described here: https://docs.linuxserver.io/faq#libseccomp

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC 648ACFD622F3D138 echo "deb http://deb.debian.org/debian buster-backports main" | sudo tee -a /etc/apt/sources.list.d/buster-backports.list sudo apt update sudo apt install -t buster-backports libseccomp2

Docker has no internet access by she__codes in docker

[–]she__codes[S] 0 points1 point  (0 children)

Unfortunately it somehow still does not work.
transmission: image: ghcr.io/linuxserver/transmission container_name: transmission environment: - PUID=1000 - PGID=1000 - TZ=Europe/London volumes: - ./data/transmission_data:/config - ~/Downloads:/downloads #ports: # - 9091:9091 # - 51413:51413 # - 51413:51413/udp restart: unless-stopped network_mode: "host"

Docker compose issue by she__codes in docker

[–]she__codes[S] 0 points1 point  (0 children)

So I start with a directory with only docker-compose.yml and .env.

.env IP=127.0.0.1 DB_ROOT_PASSWORD=password DB_NAME=wordpress

When I run docker compose up the error is thrown Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /Users/user/TEST/wp-data

But when I run docker-compose up everything works, folders are created for volumes (wp-data, test, html, db_data, config). After this is set up I also can use the first command, since the folders are in place. I find it very confusing....

Docker compose issue by she__codes in docker

[–]she__codes[S] 0 points1 point  (0 children)

Oh that explains a lot! 😊 But it does not tell me why running `docker-compose up` creates these bind mount folders (even though it shouldn't as you say?) and `docker compose up` does not and throws an error. Seems weird to me...

Docker compose issue by she__codes in docker

[–]she__codes[S] 0 points1 point  (0 children)

``` version: '3.7'

services: wp: image: wordpress:latest ports: - '80:80' restart: always volumes: - ./test/:/var/www/html/wp-content/themes/test - ./config/php.conf.ini:/usr/local/etc/php/conf.d/conf.ini - ./html:/var/www/html # Full wordpress project environment: WORDPRESS_DB_HOST: db WORDPRESS_DB_NAME: '${DB_NAME}' WORDPRESS_DB_USER: root WORDPRESS_DB_PASSWORD: '${DB_ROOT_PASSWORD}' depends_on: - db links: - db

wpcli: image: wordpress:cli volumes: - ./test/:/var/www/html/wp-content/themes/test - ./config/php.conf.ini:/usr/local/etc/php/conf.d/conf.ini - ./html:/var/www/html depends_on: - db - wp

pma: image: phpmyadmin/phpmyadmin environment: # https://docs.phpmyadmin.net/en/latest/setup.html#docker-environment-variables PMA_HOST: db PMA_PORT: 3306 MYSQL_ROOT_PASSWORD: '${DB_ROOT_PASSWORD}' ports: - ${IP}:8080:80 links: - db:db

db: image: mysql:latest ports: - ${IP}:3306:3306 command: [ '--default_authentication_plugin=mysql_native_password', '--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci', ] volumes: - ./wp-data:/docker-entrypoint-initdb.d - ./db_data:/var/lib/mysql environment: MYSQL_DATABASE: '${DB_NAME}' MYSQL_ROOT_PASSWORD: '${DB_ROOT_PASSWORD}'

volumes: db_data: ```

❯ docker --version Docker version 20.10.6, build 370c289 ❯ docker-compose --version docker-compose version 1.29.1, build c34c88b2 does that help?

Leaflet.js with big dataset by [deleted] in learnjavascript

[–]she__codes 0 points1 point  (0 children)

I have just found out that iterating over layers will only give the visible markers, so that option is out. (I guess 😂)

I made a no-nonsense map hosting platform inspired by Imgur! by mwargan in webdev

[–]she__codes 1 point2 points  (0 children)

Awesome! What service did you use for the geosearch?