added livebook, pinchflat and blinko
This commit is contained in:
7
Blinko/Caddyfilepart
Normal file
7
Blinko/Caddyfilepart
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
blinko.domr.ovh,
|
||||||
|
blinko.home.domroese.eu {
|
||||||
|
tls soenke@domroese.eu
|
||||||
|
reverse_proxy 192.168.1.65:1111
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
61
Blinko/docker-compose.yaml
Normal file
61
Blinko/docker-compose.yaml
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
networks:
|
||||||
|
blinko-network:
|
||||||
|
driver: bridge
|
||||||
|
|
||||||
|
services:
|
||||||
|
blinko-website:
|
||||||
|
image: blinkospace/blinko:latest
|
||||||
|
container_name: blinko-website
|
||||||
|
environment:
|
||||||
|
NODE_ENV: production
|
||||||
|
# NEXTAUTH_URL: http://localhost:1111
|
||||||
|
# IMPORTANT: If you want to use sso, you must set NEXTAUTH_URL to your own domain
|
||||||
|
# NEXT_PUBLIC_BASE_URL: http://localhost:1111
|
||||||
|
# IMPORTANT: Replace this with your own secure secret key!
|
||||||
|
NEXTAUTH_SECRET: my_ultra_secure_nextauth_secret
|
||||||
|
DATABASE_URL: postgresql://postgres:o2OyODu2vhVJFY9apA9ODTSZg0JxFbZP@postgres:5432/postgres
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
# Make sure you have enough permissions.
|
||||||
|
# volumes:
|
||||||
|
# - ~/your-name/.blinko:/app/.blinko
|
||||||
|
restart: always
|
||||||
|
logging:
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
|
ports:
|
||||||
|
- 1111:1111
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "wget", "--spider", "-q", "http://blinko-website:1111/"]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 5
|
||||||
|
start_period: 30s
|
||||||
|
networks:
|
||||||
|
- blinko-network
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:14
|
||||||
|
container_name: blinko-postgres
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 5435:5432
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: postgres
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: o2OyODu2vhVJFY9apA9ODTSZg0JxFbZP
|
||||||
|
TZ: Europe/Berlin
|
||||||
|
# Persisting container data
|
||||||
|
# Make sure you have enough permissions.
|
||||||
|
volumes:
|
||||||
|
- /home/soenke/docker-data/blinko/.db:/var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
["CMD", "pg_isready", "-U", "postgres", "-d", "postgres"]
|
||||||
|
interval: 5s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 5
|
||||||
|
networks:
|
||||||
|
- blinko-network
|
||||||
12
livebook/Caddyfilepart
Normal file
12
livebook/Caddyfilepart
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
livebook.domr.ovh,
|
||||||
|
livebook.home.domroese.eu {
|
||||||
|
tls soenke@domroese.eu
|
||||||
|
reverse_proxy 192.168.1.65:8090
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe.livebook.domr.ovh,
|
||||||
|
iframe.livebook.home.domroese.eu {
|
||||||
|
tls soenke@domroese.eu
|
||||||
|
reverse_proxy 192.168.1.65:8091
|
||||||
|
}
|
||||||
|
|
||||||
10
livebook/docker-compose.yml
Normal file
10
livebook/docker-compose.yml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
services:
|
||||||
|
livebook-dev:
|
||||||
|
image: ghcr.io/livebook-dev/livebook
|
||||||
|
environment:
|
||||||
|
- LIVEBOOK_IFRAME_PORT=8091
|
||||||
|
- LIVEBOOK_PORT=8090
|
||||||
|
pull_policy: always
|
||||||
|
ports:
|
||||||
|
- '8091:8091'
|
||||||
|
- '8090:8090'
|
||||||
7
pinchflat/Caddyfilepart
Normal file
7
pinchflat/Caddyfilepart
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
pinchflat.domr.ovh,
|
||||||
|
pinchflat.home.domroese.eu {
|
||||||
|
tls soenke@domroese.eu
|
||||||
|
reverse_proxy 192.168.1.65:8945
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
11
pinchflat/docker-compose.yml
Normal file
11
pinchflat/docker-compose.yml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
services:
|
||||||
|
pinchflat:
|
||||||
|
image: ghcr.io/kieraneglin/pinchflat:latest
|
||||||
|
environment:
|
||||||
|
# Set the timezone to your local timezone
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
ports:
|
||||||
|
- '8945:8945'
|
||||||
|
volumes:
|
||||||
|
- /home/soenke/docker-data/pinchflat/config:/config
|
||||||
|
- /home/soenke/docker-data/pinchflat/downloads:/downloads
|
||||||
Reference in New Issue
Block a user