e0300df9e7
* chore(deps): update baldissaramatheus/tasks.md docker tag to v1.9.0 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
24 lines
759 B
YAML
24 lines
759 B
YAML
version: "3"
|
|
|
|
services:
|
|
tasks-md:
|
|
container_name: tasks-md
|
|
image: baldissaramatheus/tasks.md:1.9.0
|
|
ports:
|
|
- ${APP_PORT}:8080
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/files:/api/files/
|
|
- ${APP_DATA_DIR}/data/stylesheets:/usr/share/nginx/html/stylesheets/
|
|
environment:
|
|
- TITLE="${TASKS_MD_TITLE}"
|
|
networks:
|
|
- tipi_main_network
|
|
restart: unless-stopped
|
|
labels:
|
|
traefik.enable: ${APP_EXPOSED}
|
|
traefik.http.routers.tasks-md.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.tasks-md.entrypoints: websecure
|
|
traefik.http.routers.tasks-md.service: tasks-md
|
|
traefik.http.routers.tasks-md.tls.certresolver: myresolver
|
|
traefik.http.services.tasks-md.loadbalancer.server.port: 8080
|