mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Improve CONTRIBUTING guide
Also: - update the docker-compose to use Alpine image (lighter) - update the PHP Dockerfile to use Imagick instead of GD (for GIF support when downloading images) and add support for SQLite
This commit is contained in:
parent
3ed30d3415
commit
2a61e13fae
3 changed files with 60 additions and 15 deletions
|
@ -1,9 +1,9 @@
|
|||
version: '2'
|
||||
services:
|
||||
nginx:
|
||||
image: nginx
|
||||
image: nginx:alpine
|
||||
ports:
|
||||
- "8080:80"
|
||||
- "8000:80"
|
||||
volumes:
|
||||
- ./docker/nginx/nginx.conf:/nginx.conf
|
||||
- ./docker/logs/nginx:/var/log/nginx
|
||||
|
@ -32,8 +32,8 @@ services:
|
|||
# - ./docker/postgres/env
|
||||
# - ./docker/mariadb/env
|
||||
|
||||
#postgres:
|
||||
# image: postgres:9
|
||||
# postgres:
|
||||
# image: postgres:11-alpine
|
||||
# ports:
|
||||
# - "5432:5432"
|
||||
# volumes:
|
||||
|
@ -41,7 +41,7 @@ services:
|
|||
# env_file:
|
||||
# - ./docker/postgres/env
|
||||
|
||||
#mariadb:
|
||||
# mariadb:
|
||||
# image: mariadb:10
|
||||
# ports:
|
||||
# - "3306:3306"
|
||||
|
@ -50,12 +50,12 @@ services:
|
|||
# env_file:
|
||||
# - ./docker/mariadb/env
|
||||
|
||||
rabbitmq:
|
||||
image: rabbitmq:3-management
|
||||
ports:
|
||||
- "15672:15672"
|
||||
# rabbitmq:
|
||||
# image: rabbitmq:3-management-alpine
|
||||
# ports:
|
||||
# - "15672:15672"
|
||||
|
||||
redis:
|
||||
image: redis
|
||||
image: redis:4-alpine
|
||||
ports:
|
||||
- "6379:6379"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue