FIX: Changed all .yml to .yaml in orded to have the same way

This commit is contained in:
2025-08-28 12:35:48 +02:00
parent 08f669a770
commit 81c22b7c7a
16 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
services:
semaphore:
container_name: semaphore-ui
image: semaphoreui/semaphore:latest
restart: unless-stopped
ports:
- "3030:3000"
env_file:
- .env
volumes:
- semaphore-data:/var/lib/semaphore
- semaphore-config:/etc/semaphore
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3
networks:
- semaphore-net
volumes:
semaphore-data:
driver: local
semaphore-config:
driver: local
networks:
semaphore-net:
driver: bridge