65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
---
|
|
services:
|
|
server:
|
|
image: nginx
|
|
container_name: in_nginx
|
|
restart: always
|
|
env_file: .env
|
|
volumes:
|
|
# Vhost configuration
|
|
#- ./config/caddy/Caddyfile:/etc/caddy/Caddyfiledocker-com
|
|
- ./config/nginx/in-vhost.conf:/etc/nginx/conf.d/in-vhost.conf:ro
|
|
- ./data/public:/var/www/app/public:ro
|
|
depends_on:
|
|
- app
|
|
# Run webserver nginx on port 80
|
|
# Feel free to modify depending what port is already occupied
|
|
ports:
|
|
- "80:80"
|
|
#- "443:443"
|
|
networks:
|
|
- invoiceninja
|
|
extra_hosts:
|
|
- "in5.localhost:127.0.0.1" #host and ip
|
|
|
|
app:
|
|
image: invoiceninja/invoiceninja:5
|
|
container_name: invoiceninja
|
|
env_file: .env
|
|
restart: always
|
|
volumes:
|
|
- ./config/hosts:/etc/hosts:ro
|
|
- ./data/public:/var/www/app/public:rw,delegated
|
|
- ./data/storage:/var/www/app/storage:rw,delegated
|
|
- ./config/php/php.ini:/usr/local/etc/php/php.ini
|
|
- ./config/php/php-cli.ini:/usr/local/etc/php/php-cli.ini
|
|
|
|
depends_on:
|
|
- db
|
|
networks:
|
|
- invoiceninja
|
|
extra_hosts:
|
|
- "in5.localhost:127.0.0.1" #host and ip
|
|
|
|
db:
|
|
image: mariadb:10.4
|
|
container_name: in_mysql
|
|
ports:
|
|
- "3305:3306"
|
|
restart: always
|
|
env_file: .env
|
|
volumes:
|
|
- ./mysql/data:/var/lib/mysql:rw,delegated
|
|
|
|
# remove comments for next 4 lines if you want auto sql backups
|
|
#- ./mysql/bak:/backups:rw
|
|
#- ./config/mysql/backup-script:/etc/cron.daily/daily:ro
|
|
#- ./config/mysql/backup-script:/etc/cron.weekly/weekly:ro
|
|
#- ./config/mysql/backup-script:/etc/cron.monthly/monthly:ro
|
|
networks:
|
|
- invoiceninja
|
|
extra_hosts:
|
|
- "in5.localhost:127.0.0.1" #host and ip
|
|
|
|
networks:
|
|
invoiceninja: |