diff --git a/dockge/compose.yaml b/dockge/compose.yaml deleted file mode 100644 index 9a81613..0000000 --- a/dockge/compose.yaml +++ /dev/null @@ -1,17 +0,0 @@ -services: - dockge: - image: louislam/dockge:1 - restart: unless-stopped - ports: - - 5001:5001 - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - /docker/dockge/data:/app/data - # Stacks Directory - # ⚠️ READ IT CAREFULLY. If you did it wrong, your data could end up writing into a WRONG PATH. - # ⚠️ 1. FULL path only. No relative path (MUST) - # ⚠️ 2. Left Stacks Path === Right Stacks Path (MUST) - - /docker/dockge/stack:/docker/dockge - environment: - # Tell Dockge where to find the stacks - - DOCKGE_STACKS_DIR=/docker/dockge diff --git a/dococd/compose.yml b/dococd/compose.yml deleted file mode 100644 index 2211790..0000000 --- a/dococd/compose.yml +++ /dev/null @@ -1,27 +0,0 @@ -services: - app: - container_name: doco-cd - # You can also pin to a specific tag (version) - # Available tags can be found here: https://github.com/kimdre/doco-cd/pkgs/container/doco-cd - image: ghcr.io/kimdre/doco-cd:0.57 - restart: unless-stopped - ports: - - "8011:80" # Webhook endpoint - - "8012:9120" # Prometheus metrics - # For all available environment variables and explanations, see https://github.com/kimdre/doco-cd/wiki/App-Settings - environment: - TZ: Asia/Ho_Chi_Minh - GIT_ACCESS_TOKEN: ea408ab20f6375a0689912dd5e98c7cf3cde9d27 - # WEBHOOK_SECRET: xxx # Uncomment this line and the webhook port above and set a secure secret if you want to use webhooks. - # <<: *poll-config # Uncomment this line to use the poll configuration from above (the `x-poll-config` section). - volumes: - - /var/run/docker.sock:/var/run/docker.sock - # The data volume (left side) can also be replaced with a bind mount to a local directory, for example: - # - ./data:/data - - /docker/dococd/data:/data - healthcheck: - test: [ "CMD", "/doco-cd", "healthcheck" ] - start_period: 15s - interval: 30s - timeout: 5s - retries: 3