Skip to content
This repository has been archived by the owner on Jun 22, 2018. It is now read-only.

Adding composer to docker-compose file #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docker-compose.yml.mariadb.example
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ services:
- backend
restart: on-failure

composer:
image: composer
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please pin this image to a specific version, i.e. composer:1.6.

restart: 'no'
volumes:
- ${PWD}/mybb:/app

networks:
frontend:
driver: bridge
Expand Down
6 changes: 6 additions & 0 deletions docker-compose.yml.pgsql.example
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ services:
- backend
restart: on-failure

composer:
image: composer
restart: 'no'
volumes:
- ${PWD}/mybb:/app

networks:
frontend:
driver: bridge
Expand Down