Skip to content

Instantly share code, notes, and snippets.

@Kovah
Last active March 27, 2025 10:24
Show Gist options
  • Save Kovah/984ef021f4c89b2d7e7610e4f5a2364c to your computer and use it in GitHub Desktop.
Save Kovah/984ef021f4c89b2d7e7610e4f5a2364c to your computer and use it in GitHub Desktop.
LinkAce with SQLite
## LINKACE CONFIGURATION
## Basic app configuration
# The app key is generated later, please leave it like that
APP_KEY=someRandomStringWith32Characters
## Configuration of the database connection
DB_CONNECTION=sqlite
DB_DATABASE=/app/storage/database/database.sqlite
-rwxrw-rw- .env
drwxrw-rw- database/
-rwxrw-rw- database/database.sqlite
-rw-r--r-- docker-compose.yml
---
services:
app:
image: docker.io/linkace/linkace:latest
restart: unless-stopped
ports:
- "0.0.0.0:80:80"
volumes:
- ./.env:/app/.env
- ./database:/app/storage/database
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment