diff --git a/ghostboard/docker-compose.yml b/ghostboard/docker-compose.yml new file mode 100644 index 0000000..ca3dda9 --- /dev/null +++ b/ghostboard/docker-compose.yml @@ -0,0 +1,7 @@ +services: + ghostboard-server: + image: thehelpfulidiot/ghostboard-server + ports: + - "1013:8080" + - "8765:8765" + restart: unless-stopped \ No newline at end of file diff --git a/n8n/docker-compose.yml b/n8n/docker-compose.yml index fd11ef7..05704ed 100644 --- a/n8n/docker-compose.yml +++ b/n8n/docker-compose.yml @@ -33,6 +33,7 @@ services: - DB_POSTGRESDB_DATABASE=${POSTGRES_DB} - DB_POSTGRESDB_USER=${POSTGRES_NON_ROOT_USER} - DB_POSTGRESDB_PASSWORD=${POSTGRES_NON_ROOT_PASSWORD} + - N8N_SECURE_COOKIE=false ports: - 1012:5678 links: diff --git a/tubearchivist/docker-compose.yml b/tubearchivist/docker-compose.yml index f3bf52b..79415de 100644 --- a/tubearchivist/docker-compose.yml +++ b/tubearchivist/docker-compose.yml @@ -5,8 +5,8 @@ services: container_name: tubearchivist restart: unless-stopped image: bbilly1/tubearchivist - ports: - - 1011:8000 + # ports: + # - 1011:9000 ### through gluetun volumes: - /home/geezo/media/youtube:/youtube - cache:/cache @@ -20,6 +20,7 @@ services: - TA_PASSWORD=verysecret # your initial TA credentials - ELASTIC_PASSWORD=verysecret # set password for Elasticsearch - TZ=America/New_York # set your time zone + - TA_PORT=9000 # had to change this because gluetun has a port collision healthcheck: test: [ "CMD", "curl", "-f", "http://localhost:8000/health" ] interval: 2m @@ -29,6 +30,7 @@ services: depends_on: - archivist-es - archivist-redis + network_mode: "container:gluetun" archivist-redis: image: redis/redis-stack-server container_name: archivist-redis diff --git a/yams/docker-compose.yml b/yams/docker-compose.yml index 8625deb..a1c2938 100644 --- a/yams/docker-compose.yml +++ b/yams/docker-compose.yml @@ -163,6 +163,7 @@ services: - 8003:8000/tcp # Admin - 2002:8080/tcp # maps to sabnzbd - 2001:2001/tcp # maps to qbittorrent + - 1011:9000 environment: - VPN_SERVICE_PROVIDER=${VPN_SERVICE} - VPN_TYPE=openvpn @@ -172,6 +173,7 @@ services: - PORT_FORWARD_ONLY=on - VPN_PORT_FORWARDING=on restart: unless-stopped + network_mode: bridge # Watchtower is going to keep our instances updated