mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2025-12-31 19:47:25 +01:00
22 lines
293 B
YAML
22 lines
293 B
YAML
db:
|
|
image: mysql
|
|
environment:
|
|
MYSQL_DATABASE: ninja
|
|
MYSQL_ROOT_PASSWORD: mdp
|
|
|
|
app:
|
|
image: lalop/invoice-ninja:2.4.2
|
|
links:
|
|
- db:mysql
|
|
|
|
web:
|
|
image: nginx
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
links:
|
|
- app
|
|
volumes_from:
|
|
- app
|
|
ports:
|
|
- 80
|