WeddingCapture es una aplicación web diseñada para capturar y almacenar momentos especiales en bodas y eventos familiares. A través de esta plataforma, los invitados pueden subir fotos y videos directamente desde sus dispositivos móviles, creando un álbum colectivo que puede ser visualizado y compartido fácilmente. Esta herramienta ofrece una experiencia de photocall interactivo, permitiendo que cada asistente contribuya a la celebración.
Crea un Archivo .env
Crea un archivo llamado .env en el directorio donde ejecutarás el contenedor y define las siguientes variables:
WEB_TITLE=Boda de Ana y Jose: Haz una Foto!
LANGUAGE=ES # Establecer 'EN' para inglés o 'ES' para español
Asegúrate de que tu archivo docker-compose.yml está configurado para usar el archivo .env:
services:
weddingcapture:
image: asturbike/weddingcapture:v1.0
ports:
- "5000:5000"
volumes:
- ./uploads:/app/uploads
env_file:
- .env
restart: always
WeddingCapture is a web application designed to allow guests at weddings and family events to easily upload photos and videos. The idea is to create a modern experience similar to a photocall, where all the memories of the event can be viewed in one place.
.env FileCreate a file named .env in the directory where you will run the container and define the following variables:
WEB_TITLE=Wedding of Ana and Jose: Take a Photo!
LANGUAGE=ES # Set to 'EN' for English or 'ES' for Spanish
Ensure that your docker-compose.yml file is set up to use the .env file:
services:
weddingcapture:
image: asturbike/weddingcapture:v1.0
ports:
- "5000:5000"
volumes:
- ./uploads:/app/uploads
env_file:
- .env
restart: always
Content type
Image
Digest
sha256:a35f36e47…
Size
49.6 MB
Last updated
almost 2 years ago
docker pull asturbike/weddingcapture:v1.0