lumbung.space/compose.yml

169 lines
3.9 KiB
YAML
Raw Normal View History

2021-12-15 10:29:58 +00:00
---
version: "3.8"
2021-12-15 11:08:23 +00:00
2021-12-15 10:29:58 +00:00
services:
app:
image: decentral1se/beta.lumbung.space:latest
networks:
- proxy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:1313"]
interval: 10s
timeout: 10s
retries: 10
start_period: 15s
volumes:
- content:/src/content
2022-01-05 10:02:44 +00:00
command: |
server
--appendPort='false'
--bind 0.0.0.0
2022-02-03 14:28:29 +00:00
--baseUrl='https://lumbung.space'
2022-01-05 10:02:44 +00:00
--port='1313'
--buildFuture
2022-05-19 10:42:47 +00:00
--disableFastRender
2022-02-10 11:32:39 +00:00
--minify
2022-01-05 10:02:44 +00:00
--watch
2021-12-15 10:29:58 +00:00
deploy:
update_config:
failure_action: rollback
order: start-first
labels:
- "traefik.enable=true"
2022-07-04 09:29:45 +00:00
- "traefik.http.routers.coop-cloud-site.rule=Host(`lumbung.space`, `www.lumbung.space`)"
2021-12-15 10:29:58 +00:00
- "traefik.http.routers.coop-cloud-site.entrypoints=web-secure"
- "traefik.http.services.coop-cloud-site.loadbalancer.server.port=1313"
- "traefik.http.routers.coop-cloud-site.tls.certresolver=production"
2021-12-15 11:08:23 +00:00
tv:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content
environment:
OUTPUT_DIR: /src/content/tv
command: |
bash -c "
while true
do
echo 'generating tv posts...'
2022-07-18 10:30:48 +00:00
/usr/local/bin/konfluks-vid
sleep 300
done
"
calendar:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content
environment:
2022-01-05 13:29:41 +00:00
OUTPUT_DIR: /src/content/calendar
CALENDAR_URL: "https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"
command: |
bash -c "
while true
do
echo 'generating calendar posts...'
2022-07-18 10:30:48 +00:00
/usr/local/bin/konfluks-cal
2022-01-28 12:24:56 +00:00
sleep 400
done
"
shouts:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content
configs:
- source: feeds_list
target: /src/feeds_list.txt
environment:
OUTPUT_DIR: /src/content/shouts
command: |
bash -c "
while true
do
echo 'generating shouts posts...'
2022-07-18 10:30:48 +00:00
/usr/local/bin/konfluks-feed
2022-01-28 12:24:56 +00:00
sleep 500
done
"
pen:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content
configs:
- source: feeds_list_pen
target: /src/feeds_list.txt
environment:
OUTPUT_DIR: /src/content/pen
command: |
bash -c "
while true
do
echo 'generating pen posts...'
2022-07-18 10:30:48 +00:00
/usr/local/bin/konfluks-feed
2022-01-28 12:24:56 +00:00
sleep 600
done
"
social:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content/
secrets:
- masto_key
environment:
OUTPUT_DIR: /src/content/social
command: |
bash -c "
export MASTODON_AUTH_TOKEN=`cat /run/secrets/masto_key`;
while true
do
echo 'generating social posts...'
2022-07-18 10:30:48 +00:00
/usr/local/bin/konfluks-hash
sleep 700
done
"
2022-01-10 18:12:49 +00:00
2022-06-15 06:19:51 +00:00
timeline:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content/
configs:
- source: feeds_list_timeline
target: /src/feeds_list_timeline.txt
environment:
OUTPUT_DIR: /src/content/timeline
command: |
bash -c "
while true
do
echo 'generating timeline...'
2022-07-18 10:30:48 +00:00
/usr/local/bin/konfluks-timeline
2022-06-15 06:19:51 +00:00
sleep 500
done
"
2021-12-15 10:29:58 +00:00
volumes:
content:
2021-12-15 11:08:23 +00:00
2021-12-15 10:29:58 +00:00
networks:
proxy:
external: true
configs:
feeds_list:
2022-07-18 10:33:30 +00:00
name: beta_lumbung_space_feeds_list_v4
file: feeds_list.txt
feeds_list_pen:
2022-07-18 10:33:30 +00:00
name: beta_lumbung_space_feeds_list_pen_v2
file: feeds_list_pen.txt
2022-06-15 06:19:51 +00:00
feeds_list_timeline:
2022-07-18 10:33:30 +00:00
name: beta_lumbung_space_feeds_list_timeline_v2
2022-06-15 06:19:51 +00:00
file: feeds_list_timeline.txt
2022-01-10 18:12:49 +00:00
secrets:
masto_key:
2022-01-11 15:01:03 +00:00
name: beta_lumbung_space_masto_key_v1
2022-01-10 18:12:49 +00:00
external: true