From 2b5780499c3e00e1969c461b864994757a21a8d8 Mon Sep 17 00:00:00 2001 From: Markus Witt Date: Fri, 3 May 2019 22:50:59 +0200 Subject: use cpanfile to install dependencies, run worker in another docker container --- docker-compose.yml | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index ac482e0..0b7336d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,6 +4,17 @@ x-common-env: &common-env TRAVELYNX_DB_NAME: travelynx TRAVELYNX_DB_USERNAME: travelynx TRAVELYNX_DB_PASSWORD: travelynx + TRAVELYNX_SECRET: 12345678 + TRAVELYNX_MAIL_DISABLE: 1 + MOJO_MODE: development + +x-common-config: &common-config + volumes: + - ./examples/docker/travelynx.conf:/app/travelynx.conf + build: . + networks: + - backend + services: database: image: postgres:11 @@ -14,16 +25,16 @@ services: volumes: - ./examples/docker/postgres-init.sh:/docker-entrypoint-initdb.d/init.sh travelynx: - build: . + <<: *common-config ports: - "8000:8093" - networks: - - backend - volumes: - - ./examples/docker/travelynx.conf:/app/travelynx.conf environment: <<: *common-env - TRAVELYNX_MAIL_DISABLE: 1 - TRAVELYNX_SECRET: 12345678 + cron: + <<: *common-config + environment: + <<: *common-env + CRON: 1 + networks: - backend: + backend: \ No newline at end of file -- cgit v1.2.3