Compare commits
2 Commits
45abd5c2e0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| ed2dbea6c0 | |||
| f7fc8ccf1a |
@@ -17,8 +17,9 @@ volumes:
|
|||||||
driver: local
|
driver: local
|
||||||
tsysdevstack-supportstack-demo_pihole_data:
|
tsysdevstack-supportstack-demo_pihole_data:
|
||||||
driver: local
|
driver: local
|
||||||
tsysdevstack-supportstack-demo_portainer_data:
|
tsysdevstack-supportstack-demo_dockhand_data:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
||||||
tsysdevstack-supportstack-demo_influxdb_data:
|
tsysdevstack-supportstack-demo_influxdb_data:
|
||||||
driver: local
|
driver: local
|
||||||
tsysdevstack-supportstack-demo_grafana_data:
|
tsysdevstack-supportstack-demo_grafana_data:
|
||||||
@@ -128,29 +129,30 @@ services:
|
|||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
||||||
# Portainer - Container Management
|
# Dockhand - Docker Management
|
||||||
portainer:
|
dockhand:
|
||||||
image: portainer/portainer-ce:latest
|
image: fnsys/dockhand:latest
|
||||||
container_name: "tsysdevstack-supportstack-demo-portainer"
|
container_name: "tsysdevstack-supportstack-demo-dockhand"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- tsysdevstack-supportstack-demo-network
|
- tsysdevstack-supportstack-demo-network
|
||||||
ports:
|
ports:
|
||||||
- "4007:9000"
|
- "4007:3000"
|
||||||
volumes:
|
volumes:
|
||||||
- tsysdevstack-supportstack-demo_portainer_data:/data
|
- tsysdevstack-supportstack-demo_dockhand_data:/app/data
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
labels:
|
labels:
|
||||||
homepage.group: "Infrastructure"
|
homepage.group: "Infrastructure"
|
||||||
homepage.name: "Portainer"
|
homepage.name: "Dockhand"
|
||||||
homepage.icon: "portainer"
|
homepage.icon: "dockhand"
|
||||||
homepage.href: "http://localhost:4007"
|
homepage.href: "http://localhost:4007"
|
||||||
homepage.description: "Web-based container management"
|
homepage.description: "Modern Docker management UI"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "curl", "-f", "--silent",
|
||||||
"http://localhost:9000"]
|
"http://localhost:3000"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
@@ -239,7 +241,7 @@ services:
|
|||||||
homepage.href: "http://localhost:4010"
|
homepage.href: "http://localhost:4010"
|
||||||
homepage.description: "Web-based diagramming application"
|
homepage.description: "Web-based diagramming application"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "curl", "-f", "--silent",
|
||||||
"http://localhost:8080"]
|
"http://localhost:8080"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
@@ -267,7 +269,7 @@ services:
|
|||||||
homepage.href: "http://localhost:4011"
|
homepage.href: "http://localhost:4011"
|
||||||
homepage.description: "Diagrams as a service"
|
homepage.description: "Diagrams as a service"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "curl", "-f", "--silent",
|
||||||
"http://localhost:8000/health"]
|
"http://localhost:8000/health"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
@@ -281,7 +283,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- tsysdevstack-supportstack-demo-network
|
- tsysdevstack-supportstack-demo-network
|
||||||
ports:
|
ports:
|
||||||
- "4012:3000"
|
- "4012:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- tsysdevstack-supportstack-demo_atomictracker_data:/app/data
|
- tsysdevstack-supportstack-demo_atomictracker_data:/app/data
|
||||||
environment:
|
environment:
|
||||||
@@ -296,7 +298,7 @@ services:
|
|||||||
homepage.description: "Habit tracking and personal dashboard"
|
homepage.description: "Habit tracking and personal dashboard"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
||||||
"http://localhost:3000"]
|
"http://localhost:8080"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
@@ -344,6 +346,7 @@ services:
|
|||||||
- TA_HOST=tubearchivist
|
- TA_HOST=tubearchivist
|
||||||
- TA_PORT=4014
|
- TA_PORT=4014
|
||||||
- TA_DEBUG=false
|
- TA_DEBUG=false
|
||||||
|
- TA_USERNAME=demo
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
labels:
|
labels:
|
||||||
@@ -352,12 +355,6 @@ services:
|
|||||||
homepage.icon: "tube-archivist"
|
homepage.icon: "tube-archivist"
|
||||||
homepage.href: "http://localhost:4014"
|
homepage.href: "http://localhost:4014"
|
||||||
homepage.description: "YouTube video archiving"
|
homepage.description: "YouTube video archiving"
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
|
||||||
"http://localhost:8000"]
|
|
||||||
interval: 30s
|
|
||||||
timeout: 10s
|
|
||||||
retries: 3
|
|
||||||
|
|
||||||
# Wakapi - Time Tracking
|
# Wakapi - Time Tracking
|
||||||
wakapi:
|
wakapi:
|
||||||
@@ -419,6 +416,7 @@ services:
|
|||||||
image: ghcr.io/atuinsh/atuin:v18.10.0
|
image: ghcr.io/atuinsh/atuin:v18.10.0
|
||||||
container_name: "tsysdevstack-supportstack-demo-atuin"
|
container_name: "tsysdevstack-supportstack-demo-atuin"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
command: server start
|
||||||
networks:
|
networks:
|
||||||
- tsysdevstack-supportstack-demo-network
|
- tsysdevstack-supportstack-demo-network
|
||||||
ports:
|
ports:
|
||||||
@@ -426,9 +424,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- tsysdevstack-supportstack-demo_atuin_data:/config
|
- tsysdevstack-supportstack-demo_atuin_data:/config
|
||||||
environment:
|
environment:
|
||||||
- ATUIN_HOST=atuin
|
- ATUIN_DB_URI=sqlite:///config/atuin.db
|
||||||
- ATUIN_PORT=4018
|
|
||||||
- ATUIN_OPEN_REGISTRATION=true
|
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
labels:
|
labels:
|
||||||
@@ -437,9 +433,3 @@ services:
|
|||||||
homepage.icon: "atuin"
|
homepage.icon: "atuin"
|
||||||
homepage.href: "http://localhost:4018"
|
homepage.href: "http://localhost:4018"
|
||||||
homepage.description: "Magical shell history synchronization"
|
homepage.description: "Magical shell history synchronization"
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
|
||||||
"http://localhost:8888"]
|
|
||||||
interval: 30s
|
|
||||||
timeout: 10s
|
|
||||||
retries: 3
|
|
||||||
|
|||||||
@@ -151,7 +151,7 @@ services:
|
|||||||
homepage.href: "http://localhost:${DOCKHAND_PORT}"
|
homepage.href: "http://localhost:${DOCKHAND_PORT}"
|
||||||
homepage.description: "Modern Docker management UI"
|
homepage.description: "Modern Docker management UI"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "curl", "-f", "--silent",
|
||||||
"http://localhost:3000"]
|
"http://localhost:3000"]
|
||||||
interval: ${HEALTH_CHECK_INTERVAL}
|
interval: ${HEALTH_CHECK_INTERVAL}
|
||||||
timeout: ${HEALTH_CHECK_TIMEOUT}
|
timeout: ${HEALTH_CHECK_TIMEOUT}
|
||||||
@@ -241,7 +241,7 @@ services:
|
|||||||
homepage.href: "http://localhost:${DRAWIO_PORT}"
|
homepage.href: "http://localhost:${DRAWIO_PORT}"
|
||||||
homepage.description: "Web-based diagramming application"
|
homepage.description: "Web-based diagramming application"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "curl", "-f", "--silent",
|
||||||
"http://localhost:8080"]
|
"http://localhost:8080"]
|
||||||
interval: ${HEALTH_CHECK_INTERVAL}
|
interval: ${HEALTH_CHECK_INTERVAL}
|
||||||
timeout: ${HEALTH_CHECK_TIMEOUT}
|
timeout: ${HEALTH_CHECK_TIMEOUT}
|
||||||
@@ -269,7 +269,7 @@ services:
|
|||||||
homepage.href: "http://localhost:${KROKI_PORT}"
|
homepage.href: "http://localhost:${KROKI_PORT}"
|
||||||
homepage.description: "Diagrams as a service"
|
homepage.description: "Diagrams as a service"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "curl", "-f", "--silent",
|
||||||
"http://localhost:8000/health"]
|
"http://localhost:8000/health"]
|
||||||
interval: ${HEALTH_CHECK_INTERVAL}
|
interval: ${HEALTH_CHECK_INTERVAL}
|
||||||
timeout: ${HEALTH_CHECK_TIMEOUT}
|
timeout: ${HEALTH_CHECK_TIMEOUT}
|
||||||
@@ -283,7 +283,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- ${COMPOSE_NETWORK_NAME}
|
- ${COMPOSE_NETWORK_NAME}
|
||||||
ports:
|
ports:
|
||||||
- "${ATOMIC_TRACKER_PORT}:3000"
|
- "${ATOMIC_TRACKER_PORT}:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- ${COMPOSE_PROJECT_NAME}_atomictracker_data:/app/data
|
- ${COMPOSE_PROJECT_NAME}_atomictracker_data:/app/data
|
||||||
environment:
|
environment:
|
||||||
@@ -298,7 +298,7 @@ services:
|
|||||||
homepage.description: "Habit tracking and personal dashboard"
|
homepage.description: "Habit tracking and personal dashboard"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
||||||
"http://localhost:3000"]
|
"http://localhost:8080"]
|
||||||
interval: ${HEALTH_CHECK_INTERVAL}
|
interval: ${HEALTH_CHECK_INTERVAL}
|
||||||
timeout: ${HEALTH_CHECK_TIMEOUT}
|
timeout: ${HEALTH_CHECK_TIMEOUT}
|
||||||
retries: ${HEALTH_CHECK_RETRIES}
|
retries: ${HEALTH_CHECK_RETRIES}
|
||||||
@@ -346,6 +346,7 @@ services:
|
|||||||
- TA_HOST=${TA_HOST}
|
- TA_HOST=${TA_HOST}
|
||||||
- TA_PORT=${TA_PORT}
|
- TA_PORT=${TA_PORT}
|
||||||
- TA_DEBUG=${TA_DEBUG}
|
- TA_DEBUG=${TA_DEBUG}
|
||||||
|
- TA_USERNAME=demo
|
||||||
- PUID=${DEMO_UID}
|
- PUID=${DEMO_UID}
|
||||||
- PGID=${DEMO_GID}
|
- PGID=${DEMO_GID}
|
||||||
labels:
|
labels:
|
||||||
@@ -354,12 +355,6 @@ services:
|
|||||||
homepage.icon: "tube-archivist"
|
homepage.icon: "tube-archivist"
|
||||||
homepage.href: "http://localhost:${TUBE_ARCHIVIST_PORT}"
|
homepage.href: "http://localhost:${TUBE_ARCHIVIST_PORT}"
|
||||||
homepage.description: "YouTube video archiving"
|
homepage.description: "YouTube video archiving"
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
|
||||||
"http://localhost:8000"]
|
|
||||||
interval: ${HEALTH_CHECK_INTERVAL}
|
|
||||||
timeout: ${HEALTH_CHECK_TIMEOUT}
|
|
||||||
retries: ${HEALTH_CHECK_RETRIES}
|
|
||||||
|
|
||||||
# Wakapi - Time Tracking
|
# Wakapi - Time Tracking
|
||||||
wakapi:
|
wakapi:
|
||||||
@@ -421,6 +416,7 @@ services:
|
|||||||
image: ghcr.io/atuinsh/atuin:v18.10.0
|
image: ghcr.io/atuinsh/atuin:v18.10.0
|
||||||
container_name: "${COMPOSE_PROJECT_NAME}-atuin"
|
container_name: "${COMPOSE_PROJECT_NAME}-atuin"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
command: server start
|
||||||
networks:
|
networks:
|
||||||
- ${COMPOSE_NETWORK_NAME}
|
- ${COMPOSE_NETWORK_NAME}
|
||||||
ports:
|
ports:
|
||||||
@@ -428,9 +424,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ${COMPOSE_PROJECT_NAME}_atuin_data:/config
|
- ${COMPOSE_PROJECT_NAME}_atuin_data:/config
|
||||||
environment:
|
environment:
|
||||||
- ATUIN_HOST=${ATUIN_HOST}
|
- ATUIN_DB_URI=sqlite:///config/atuin.db
|
||||||
- ATUIN_PORT=${ATUIN_PORT}
|
|
||||||
- ATUIN_OPEN_REGISTRATION=${ATUIN_OPEN_REGISTRATION}
|
|
||||||
- PUID=${DEMO_UID}
|
- PUID=${DEMO_UID}
|
||||||
- PGID=${DEMO_GID}
|
- PGID=${DEMO_GID}
|
||||||
labels:
|
labels:
|
||||||
@@ -439,9 +433,3 @@ services:
|
|||||||
homepage.icon: "atuin"
|
homepage.icon: "atuin"
|
||||||
homepage.href: "http://localhost:${ATUIN_PORT}"
|
homepage.href: "http://localhost:${ATUIN_PORT}"
|
||||||
homepage.description: "Magical shell history synchronization"
|
homepage.description: "Magical shell history synchronization"
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider",
|
|
||||||
"http://localhost:8888"]
|
|
||||||
interval: ${HEALTH_CHECK_INTERVAL}
|
|
||||||
timeout: ${HEALTH_CHECK_TIMEOUT}
|
|
||||||
retries: ${HEALTH_CHECK_RETRIES}
|
|
||||||
|
|||||||
0
demo/tmp_template.yml
Normal file
0
demo/tmp_template.yml
Normal file
Reference in New Issue
Block a user