changes
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 22s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 22s
This commit is contained in:
parent
698e14b708
commit
beb91e6000
@ -17,7 +17,6 @@ services:
|
|||||||
- "./data:/data"
|
- "./data:/data"
|
||||||
- "/home/geezo/nfs_shares/media/music:/music:ro"
|
- "/home/geezo/nfs_shares/media/music:/music:ro"
|
||||||
networks:
|
networks:
|
||||||
- tunnel
|
|
||||||
- default
|
- default
|
||||||
labels:
|
labels:
|
||||||
glance.name: Navidrome
|
glance.name: Navidrome
|
||||||
@ -31,6 +30,4 @@ volumes:
|
|||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
tunnel:
|
|
||||||
external: true
|
|
||||||
default:
|
default:
|
||||||
@ -21,10 +21,7 @@ services:
|
|||||||
glance.description: Habit Tacker
|
glance.description: Habit Tacker
|
||||||
glance.hide: false
|
glance.hide: false
|
||||||
networks:
|
networks:
|
||||||
- tunnel
|
|
||||||
- default
|
- default
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
tunnel:
|
|
||||||
external: true
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
1
glance/test.txt
Normal file
1
glance/test.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
sdvsdvc
|
||||||
@ -15,8 +15,7 @@ services:
|
|||||||
BROWSER_WEB_URL: http://chrome:9222
|
BROWSER_WEB_URL: http://chrome:9222
|
||||||
OPENAI_API_KEY: "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"
|
OPENAI_API_KEY: "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"
|
||||||
DATA_DIR: /data
|
DATA_DIR: /data
|
||||||
networks:
|
networks:s
|
||||||
- tunnel
|
|
||||||
- default
|
- default
|
||||||
labels:
|
labels:
|
||||||
glance.name: Hoarder
|
glance.name: Hoarder
|
||||||
@ -52,6 +51,4 @@ volumes:
|
|||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
tunnel:
|
|
||||||
external: true
|
|
||||||
default:
|
default:
|
||||||
@ -15,7 +15,7 @@ services:
|
|||||||
- nextcloud_default
|
- nextcloud_default
|
||||||
- yams_default
|
- yams_default
|
||||||
- immich_default
|
- immich_default
|
||||||
- perplexica_perplexica-network
|
# - perplexica_perplexica-network
|
||||||
- vaultwarden_default
|
- vaultwarden_default
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
- "pangolin.geezo.site:44.210.184.15"
|
- "pangolin.geezo.site:44.210.184.15"
|
||||||
@ -38,5 +38,5 @@ networks:
|
|||||||
external: true
|
external: true
|
||||||
vaultwarden_default:
|
vaultwarden_default:
|
||||||
external: true
|
external: true
|
||||||
perplexica_perplexica-network:
|
# perplexica_perplexica-network:
|
||||||
external: true
|
# external: true
|
||||||
45
operational/docker-compose.yml
Normal file
45
operational/docker-compose.yml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
mysql:
|
||||||
|
image: mysql:8.2
|
||||||
|
container_name: operational-mysql
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: operational_root_password
|
||||||
|
MYSQL_DATABASE: operational
|
||||||
|
MYSQL_USER: operational_user
|
||||||
|
MYSQL_PASSWORD: operational_password
|
||||||
|
ports:
|
||||||
|
- "3307:3306" # host:container
|
||||||
|
volumes:
|
||||||
|
- mysql-data:/var/lib/mysql
|
||||||
|
|
||||||
|
operational:
|
||||||
|
image: ghcr.io/operational-co/operational.co:0.1.7
|
||||||
|
container_name: operational-app
|
||||||
|
depends_on:
|
||||||
|
- mysql
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "1025:80" # For frontend (nginx serving the Vue SPA)
|
||||||
|
- "1027:4337" # For backend API
|
||||||
|
environment:
|
||||||
|
DATABASE_URL: mysql://operational_user:operational_password@operational-mysql:3306/operational
|
||||||
|
APP_URL: http://localhost:3000
|
||||||
|
VAPID_EMAIL: ""
|
||||||
|
VAPID_PUBLIC_KEY: ""
|
||||||
|
VAPID_PRIVATE_KEY: ""
|
||||||
|
PORT: ""
|
||||||
|
SECRET: ""
|
||||||
|
REMOVE_TEST_EVENTS_AT: ""
|
||||||
|
CORS: "*"
|
||||||
|
RESEND: ""
|
||||||
|
ADMIN_EMAIL: admin@email.com
|
||||||
|
SMTP_HOST: ""
|
||||||
|
SMTP_PORT: ""
|
||||||
|
SMTP_USERNAME: ""
|
||||||
|
SMTP_PASSWORD: ""
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
mysql-data:
|
||||||
@ -10,7 +10,6 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 1008:80
|
- 1008:80
|
||||||
networks:
|
networks:
|
||||||
- tunnel
|
|
||||||
- default
|
- default
|
||||||
|
|
||||||
|
|
||||||
@ -19,6 +18,4 @@ volumes:
|
|||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
tunnel:
|
|
||||||
external: true
|
|
||||||
default:
|
default:
|
||||||
Loading…
Reference in New Issue
Block a user