This guide provides step-by-step instructions to set up The Things Stack using Docker, starting from configuration files provided separately.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
server_name lorawan-ns-02.diegocornejo.com; | |
listen 80; | |
# --- API --- | |
location ^~ /api/ { | |
proxy_pass http://127.0.0.1:8090; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: n8n | |
volumes: | |
db_storage: | |
n8n_storage: | |
services: | |
postgres: | |
image: postgres:16.6 | |
restart: always |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bookstack | |
services: | |
# The container for BookStack itself | |
bookstack: | |
# You should update the version here to match the latest | |
# release of BookStack: https://github.com/BookStackApp/BookStack/releases | |
# You'll change this when wanting to update the version of BookStack used. | |
image: lscr.io/linuxserver/bookstack:version-v25.02 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
ipfs: | |
image: ipfs/kubo:latest | |
container_name: ipfs | |
volumes: | |
- ./ipfs_path:/data/ipfs | |
- ./ipfs_export:/export | |
- ./ipfs_fuse:/ipfs | |
- ./ipns_fuse:/ipns |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networks: | |
default: | |
attachable: true | |
name: "neko-rooms-net" | |
services: | |
neko-rooms: | |
image: "m1k1o/neko-rooms:latest" | |
restart: "unless-stopped" | |
environment: |
docker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh --postgresql > initdb.sql
docker compose up -d postgres
docker logs -f guacamole-postgres
NewerOlder