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
--- | |
version: "2" | |
services: | |
wiki: | |
image: ghcr.io/linuxserver/bookstack | |
container_name: wiki | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- APP_URL= |
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
filenames: | |
- /logs/npm/*.log | |
labels: | |
type: npm |
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
version: '3' | |
services: | |
#the application itself : static html served by apache2. | |
#the html can be found in ./app/ | |
app: | |
image: httpd:alpine | |
restart: always | |
volumes: |
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
services: | |
homechart: | |
depends_on: | |
- postgres | |
environment: | |
HOMECHART_POSTGRESQL_HOSTNAME: postgres | |
HOMECHART_POSTGRESQL_PASSWORD: postgres | |
HOMECHART_POSTGRESQL_USERNAME: postgres | |
HOMECHART_APP_ADMINEMAILADDRESSES: davidnburgess@gmail.com | |
HOMECHART_APP_BASEURL: https://home.dbt3ch.com |
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
version: '3.3' | |
services: | |
firefox: | |
ports: | |
- '6911:6901' #change 6901 as necessary. eg. '6901:6901', '6902:6901', '6903:6901' | |
environment: | |
- VNC_PW=password #change as desired | |
shm_size: '512m' #change per your needs. eg. '512m', '1gb', '2gb' | |
image: 'kasmweb/firefox:1.9.0' #change the image to your desired image |
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
Edit /etc/systemd/resolved.conf and change the Cache and DNSStubListener lines to no. | |
Should look like this when you're done: | |
# This file is part of systemd. | |
# | |
# systemd is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU Lesser General Public License as published by | |
# the Free Software Foundation; either version 2.1 of the License, or | |
# (at your option) any later version. |
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
version: '3.3' | |
services: | |
lancache-dns: | |
restart: unless-stopped | |
container_name: lancache-dns | |
ports: | |
- 53:53/udp | |
environment: | |
- USE_GENERIC_CACHE=true | |
- LANCACHE_IP=192.168.1.183 |
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
server { | |
listen 80; | |
location / { | |
proxy_pass http://frontend:80; | |
} | |
location ~* ^/(api|dav|\.well-known)/ { | |
proxy_pass http://api:3456; | |
client_max_body_size 20M; |
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
version: '3' | |
services: | |
db: | |
image: mariadb:10 | |
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci | |
environment: | |
MYSQL_ROOT_PASSWORD: supersecret | |
MYSQL_USER: vikunja | |
MYSQL_PASSWORD: secret |
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
--- | |
version: "2.1" | |
volumes: | |
searx: | |
services: | |
searx: | |
image: searx/searx | |
container_name: searx |
NewerOlder