19 Commits

Author SHA1 Message Date
f813bc1de4 Update html/index.html 2025-08-15 09:53:29 +00:00
bc378c2565 Update html/index.html 2025-08-15 09:51:02 +00:00
70ed577ccb Update html/index.html 2025-08-15 09:50:22 +00:00
6fc6d73feb Update html/index.html 2025-08-07 12:09:56 +00:00
1568a03ac8 Update html/index.html 2025-08-02 12:40:39 +00:00
4bf96a4b67 Update html/index.html 2025-08-02 12:20:55 +00:00
4150fc01ce Update html/README.md 2025-07-07 22:11:44 +00:00
879686c4a8 Update README.md 2025-07-07 22:09:51 +00:00
4eb2d4d15b Update README.md 2025-07-07 22:08:40 +00:00
986ba6c6d5 Update html/index.html 2025-06-29 23:27:45 +00:00
b8830bfb7b Update html/index.html 2025-06-27 07:28:19 +00:00
17bf1980bc Update html/index.html 2025-06-27 07:26:50 +00:00
a758b58083 Update README.md 2025-06-26 23:13:07 +00:00
fc5e1a273a Update README.md 2025-06-26 23:10:41 +00:00
908ed35f14 Update html/index.html 2025-06-23 13:07:33 +00:00
5784e40493 Update html/index.html 2025-06-23 12:07:45 +00:00
3a74bca7f6 Update README.md 2025-06-23 11:34:11 +00:00
140cc7dda4 Update html/index.html 2025-06-23 11:30:57 +00:00
a50d27be35 Update html/index.html 2025-06-23 11:28:58 +00:00
9 changed files with 10 additions and 58 deletions

View File

@@ -1,4 +1,4 @@
# Dokploy Examples
# Dokploy Examples......
---
This repository contains examples of how to deploy applications using Dokploy.

View File

@@ -1,5 +0,0 @@
services:
base-app:
image: nginx:latest # Imagen base
ports:
- "80" # Puerto expuesto

View File

@@ -1,13 +0,0 @@
services:
web-service:
extends:
file: common-services.yml # Apunta al archivo común
service: base-app # Usa el servicio base
environment:
- ENVIRONMENT=production # Sobrescribe o agrega configuración
worker-service:
extends:
file: common-services.yml
service: base-app
command: ["/bin/sh", "-c", "while true; do echo 'Worker running'; sleep 10; done"] # Cambia el comando

View File

@@ -1,12 +0,0 @@
services:
db:
image: postgres:latest # Usa la imagen precreada de PostgreSQL
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: mydatabase
volumes:
- postgres_data-include:/var/lib/postgresql/data
volumes:
postgres_data-include:

View File

@@ -1,10 +0,0 @@
include:
- db-compose.yml # Incluye la configuración de la base de datos
services:
web:
image: nginx:latest # Usa la imagen precreada de Nginx
ports:
- "80"
depends_on:
- db # Depende del servicio de base de datos

View File

@@ -1,6 +0,0 @@
services:
webapp:
environment:
- DEBUG=1 # Agrega una variable de entorno
ports:
- "80" # Agrega un nuevo puerto (se concatenará con el original)

View File

@@ -1,7 +0,0 @@
services:
webapp:
image: nginx:latest # Imagen base
ports:
- "80" # Puerto expuesto
volumes:
- ./app:/usr/share/nginx/html # Volumen para archivos

View File

@@ -1,4 +1,4 @@
# HTML Example
# HTML Example.
This repository contains an example of HTML application that is deployed on Dokploy.

View File

@@ -1,7 +1,12 @@
<html>
<head>
<title>Hello World</title>
<title>Hello &#127757;World from Anders</title>
<script defer src="https://umami.dokploy.agentic-ai.dk/script.js" data-website-id="d4ed43ca-7921-4b7e-9601-db450a867439"></script>
<script defer src="https://umami.dokploy.agentic-ai.dk/script.js" data-website-id="484b17a0-3a88-4137-a212-a4d2a780afe3"></script>
<script src="https://rybitt.dokploy.agentic-ai.dk/api/script.js" data-site-id="11" defer></script>
<script src="https://rybitt.dokploy.agentic-ai.dk/api/script.js" data-site-id="12" defer></script>
</head>
<body>
<h1>Hello World</h1>
</body>
<h1>Hello &#127757;World from Anders</h1>
</body>
</html>