mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
This commit adds: 1. A Dockerfile that runs PHP 7.2 FPM on Alpine Linux 2. A example docker-compose file that simplifies deployment
19 lines
228 B
Plaintext
19 lines
228 B
Plaintext
version: '3.1'
|
|
|
|
services:
|
|
|
|
nginx:
|
|
image: nginx
|
|
expose:
|
|
- 80
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
restart: always
|
|
|
|
php:
|
|
build: .
|
|
expose:
|
|
- 9000
|
|
restart: always
|
|
|