this repo has no description
at main 991 B view raw
1services: 2 wakapi: 3 image: ghcr.io/muety/wakapi:latest 4 init: true 5 container_name: wakapi 6 restart: unless-stopped 7 environment: 8 WAKAPI_PASSWORD_SALT_FILE: "/run/secrets/password_salt" # alternatively, set WAKAPI_PASSWORD_SALT directly without the use of secrets 9 secrets: 10 - source: password_salt 11 target: password_salt 12 uid: '1000' 13 gid: '1000' 14 mode: '0400' 15 volumes: 16 - wakapi-data:/data 17 labels: 18 glance.name: Wakatime 19 glance.icon: si:wakatime 20 glance.url: https://wakapi.tulkdan.dev 21 networks: 22 - wakapi-network 23 24# secrets can be defined either from a local file or from an environment variable defined on the client host (the one that runs `docker compose` command) 25# see https://docs.docker.com/compose/how-tos/use-secrets/ for details 26secrets: 27 password_salt: 28 file: password_salt.txt 29 30volumes: 31 wakapi-data: 32 33networks: 34 wakapi-network: 35 name: proxy-network 36 external: true