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: | |
db: | |
image: mariadb | |
volumes: | |
- /database:/var/lib/mysql:rw # I haven't had good luck putting this database in a different directory | |
restart: unless-stopped | |
networks: | |
- private |
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' | |
services: | |
wordpress: | |
image: wordpress | |
restart: always | |
ports: | |
- 8282:80 | |
environment: |
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
# You can leave this on "local". If you change it to production most console commands will ask for extra confirmation. | |
# Never set it to "testing". | |
APP_ENV=local | |
# Set to true if you want to see debug information in error screens. | |
APP_DEBUG=false | |
# This should be your email address. | |
# If you use Docker or similar, you can set this variable from a file by using SITE_OWNER_FILE | |
[email protected] |
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: | |
fireflyiii: | |
image: jc5x/firefly-iii:latest | |
volumes: | |
- /srv/FireFly3/firefly_iii_export:/var/www/firefly-iii/storage/export | |
- /srv/FireFly3/firefly_iii_upload:/var/www/firefly-iii/storage/upload | |
env_file: .env | |
ports: |
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: | |
homebridge: | |
image: oznu/homebridge | |
container_name: homebridge | |
restart: unless-stopped | |
network_mode: host | |
ports: | |
- 8181:8080 |
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' | |
services: | |
akaunting: | |
image: kuralabs/docker-akaunting:latest | |
restart: always | |
ports: | |
- 8080:8080 | |
environment: |
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' | |
services: | |
n8n: | |
image: n8nio/n8n | |
restart: unless-stopped | |
ports: | |
- 5678:5678 | |
environment: |
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' | |
services: | |
deezloaderrmx: | |
image: bocki/deezloaderrmx | |
container_name: Deezldr | |
volumes: | |
- /srv/deezloaderrmx:/downloads | |
- /srv/deezloaderrmx:/config | |
environment: | |
- PUID=998 #Optional |
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' | |
services: | |
deemix: | |
image: registry.gitlab.com/bockiii/deemix-docker | |
container_name: Deemix | |
volumes: | |
- /srv/Deemix/Downloads:/downloads | |
- /srv/Deemix/Config:/config | |
environment: | |
- PUID=1000 |
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' | |
services: | |
musicbrainz: | |
image: elgranloky/musicbrainz-picard | |
container_name: musicbrainz-picard | |
volumes: | |
- /srv/Musicbrainz/Music:/config/home/Music | |
- /srv/Musicbrainz/config:/config | |
environment: | |
- PUID=1000 |