Skip to content
Snippets Groups Projects
Commit 678433b7 authored by Elian Loraux's avatar Elian Loraux
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
# Without traefik
# COPOSE_FILE=docker-compose.yml:ports.yml
# With traefik
COPOSE_FILE=docker-compose.yml:traefik.yml
NAME=yaade
HOST=some-host.fqdn
YAADE_ADMIN_USERNAME=admin
.env
# Yaade
This is Dockerised selfhosted Yaade with traefik
[See Yaade repository](https://github.com/EsperoTech/yaade)
## Install
```bash
cp .env.sample .env
# Modify variable in .env in .env
docker-compose up
# Change password of admin with web app
```
version: "3"
services:
yaade:
image: esperotech/yaade:latest
container_name: yaade_app
volumes:
- yaade:/app/data
environment:
- YAADE_ADMIN_USERNAME=${YAADE_ADMIN_USERNAME}
volumes:
yaade:
version: "3"
services:
yaade:
ports:
- 9339:9339
version: "3"
services:
yaade:
networks:
- default
- traefik
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik"
- "traefik.http.routers.${NAME}.rule=Host(`${HOST}`)"
- "traefik.http.routers.${NAME}.tls.certresolver=myresolver"
- "traefik.http.routers.${NAME}.entrypoints=web,websecure"
- "traefik.http.services.${NAME}.loadbalancer.server.port=9339"
- "traefik.http.services.${NAME}.loadbalancer.server.scheme=http"
networks:
traefik:
external: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment