-
-
Save Kovah/984ef021f4c89b2d7e7610e4f5a2364c to your computer and use it in GitHub Desktop.
LinkAce with SQLite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-rwxrw-rw- .env | |
drwxrw-rw- database/ | |
-rwxrw-rw- database/database.sqlite | |
-rw-r--r-- docker-compose.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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