-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '3.1'
services:
app:
container_name: app
build:
context: ./app
environment:
SERVICE_IGNORE: 'true'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./app/srv:/srv
- ./app/docker:/root/docker
- ./app/features:/root/tests/features
- ./app/behat.yml:/root/tests/behat.yml
- ./app/composer.json:/root/tests/composer.json
- ./app/composer.lock:/root/tests/composer.lock
platform:
container_name: platform
build:
context: ./platform
environment:
GITHUB_USERNAME: '${GITHUB_USERNAME}'
GITHUB_PASSWORD: '${GITHUB_PASSWORD}'
DOCKERHUB_EMAIL: '${DOCKERHUB_EMAIL}'
DOCKERHUB_USERNAME: '${DOCKERHUB_USERNAME}'
DOCKERHUB_PASSWORD: '${DOCKERHUB_PASSWORD}'
privileged: true
entrypoint: /bin/sh
stdin_open: true
tty: true
volumes:
- ./platform/ansible:/etc/ansible
- ./platform/ssh:/root/ssh
- ./app/fixtures:/root/fixtures
- ./app/jwt:/root/jwt
- ./VERSION:/root/VERSION