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
version: "3.8" | |
services: | |
nginxproxymanager: | |
image: jc21/nginx-proxy-manager:latest | |
container_name: nginxproxymanager | |
restart: unless-stopped | |
ports: | |
#- 80:80 | |
- 81:81 | |
- 443:443 |
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
version: "3.8" | |
services: | |
dashy: | |
# To build from source, replace 'image: lissy93/dashy' with 'build: .' | |
# build: . | |
image: lissy93/dashy | |
# Pass in your config file below, by specifying the path on your host machine | |
volumes: | |
- /your/directory/dashy/config.yml:/app/user-data/conf.yml | |
ports: |
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
version: "3.8" | |
services: | |
youtrack: | |
container_name: youtrack | |
stdin_open: true | |
tty: true | |
image: jetbrains/youtrack:version | |
volumes: | |
- /your/directory/youtrack/data:/opt/youtrack/data | |
- /your/directory/youtrack/conf:/opt/youtrack/conf |
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
version: "3.8" | |
services: | |
filebrowser: | |
image: filebrowser/filebrowser:latest | |
volumes: | |
- /home:/srv | |
- /home/yourUser/filebrowser/filebrowser.db:/database/filebrowser.db | |
- /home/yourUser/filebrowser/settings.json:/config/settings.json | |
environment: | |
- PUID=$(id -u) |
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
version: "3.8" | |
services: | |
mssql: | |
container_name: mssql-db | |
hostname: mssql-db | |
user: 10001:10001 | |
image: mcr.microsoft.com/mssql/server:2022-latest | |
environment: | |
- ACCEPT_EULA='Y' | |
- MSSQL_SA_PASSWORD=yourPassw0rd- |