Manage Android device usage. Source: https://codeberg.org/timelimit/timelimit-server
9.7K
docker-compose.yml (Reference):
services:
timelimit-server:
image: docker.io/austozi/timelimit-server:latest
container_name: timelimit-server
restart: unless-stopped
user: "1000:1000"
environment:
TZ: Europe/London
NODE_ENV: production
DATABASE_URL: mariadb://timelimit:mariadbpassword@mariadb:3306/timelimit
PORT: 8080
MAIL_SENDER: [email protected]
MAIL_TRANSPORT: '{"host": "mailserver", "port": 25}'
ALWAYS_PRO: yes
expose:
- 8080
networks:
- backend
- mailer
- proxy
depends_on:
- mariadb
mariadb:
image: docker.io/mariadb:11
container_name: timelimit-mariadb
restart: unless-stopped
environment:
TZ: Europe/London
MYSQL_ROOT_PASSWORD: mariadbrootpassword
MYSQL_DATABASE: timelimit
MYSQL_USER: timelimit
MYSQL_PASSWORD: mariadbpassword
volumes:
- ./database:/var/lib/mysql
expose:
- 3306
networks:
- backend
networks:
backend:
internal: true
mailer:
internal: true
proxy:
https://f-droid.org/en/packages/io.timelimit.android.aosp.direct/
Content type
Image
Digest
sha256:180a3f511…
Size
93.4 MB
Last updated
24 days ago
docker pull austozi/timelimit-server