Skip to content

Instantly share code, notes, and snippets.

View dnburgess's full-sized avatar

David Burgess dnburgess

View GitHub Profile
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
version: '2.1'
services:
wordpress:
image: wordpress
restart: always
ports:
- 8282:80
environment:
@dnburgess
dnburgess / gist:43883fa95f4999423047b4375e412213
Created August 12, 2020 18:58
DB Tech .env file for Firefly III
# 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
SITE_OWNER=mail@example.com
@dnburgess
dnburgess / gist:2dc43082993ab85c7a03e94eb6db613a
Created August 12, 2020 18:58
DB Tech docker-compose.yml for Firefly III
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:
version: '2'
services:
homebridge:
image: oznu/homebridge
container_name: homebridge
restart: unless-stopped
network_mode: host
ports:
- 8181:8080
version: '2.1'
services:
akaunting:
image: kuralabs/docker-akaunting:latest
restart: always
ports:
- 8080:8080
environment:
version: '2.1'
services:
n8n:
image: n8nio/n8n
restart: unless-stopped
ports:
- 5678:5678
environment:
@dnburgess
dnburgess / gist:b376061136f38aa8b8d37177eb94545a
Last active August 19, 2020 15:41
DB Tech Deezloader Remix
version: '2.1'
services:
deezloaderrmx:
image: bocki/deezloaderrmx
container_name: Deezldr
volumes:
- /srv/deezloaderrmx:/downloads
- /srv/deezloaderrmx:/config
environment:
- PUID=998 #Optional
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
@dnburgess
dnburgess / gist:07ab33517ccd350cc02111ce59bd1696
Created August 20, 2020 16:46
DB Tech Musicbrainz-Picard
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