-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tomas Peterka
committed
Dec 10, 2023
1 parent
f311806
commit 744f130
Showing
8 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Example role | ||
|
||
Once you will need to add your own software into Lokal then you will | ||
appreciate this folder. There is quite detailed [documentation](https://docs.lokal.network/) but it | ||
is missing details on how to add your own roles. | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version_yourapp: "13" | ||
|
||
# Security does not matter much here because all connections | ||
# to the database are blocked from outside. To get a security | ||
# breach, you would need to install the security thread yourself | ||
mysql_user_yourapp: "your_app" | ||
mysql_password_yourapp: "your_app" | ||
mysql_database_yourapp: "your_app" | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
This is just an example of a static file - can be a binary or anything | ||
else that will get copied to the remote server and bound in a folder | ||
into the docker container. Thus it will be accessible on predefined | ||
path. This file will be copied with the {{ansible_user}} user and | ||
priviledges. It will be mounted in the docker with {{uid}}:{{gid}} | ||
permissions which are usually 1000:1000. We aim to run all containers | ||
unpriviledged. |
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This is an example config file for your example services | ||
# It can have any format because you use jinja2 templates | ||
|
||
# Available variables are composed from following files: | ||
# - roles/lokal/defaults/main.yml | ||
# - roles/<your-service>/defaults/main.yml | ||
# - hosts/<your-host-file>.yml | ||
|
||
HOST: {{domain}} | ||
|
||
MY_COSTOM_VARIABLE: 5 | ||
HELLO: "world" |
Empty file.
Empty file.