-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.override.yml.dist
More file actions
29 lines (28 loc) · 915 Bytes
/
docker-compose.override.yml.dist
File metadata and controls
29 lines (28 loc) · 915 Bytes
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
version: '3.1'
services:
tarantool:
ports:
- "8080:8080"
worker:
volumes:
- ${SSH_AUTH_SOCK}:${SSH_AUTH_SOCK}
- ./docker/worker/dev.ini:/usr/local/etc/php/conf.d/99-dev.ini
environment:
- SSH_AUTH_SOCK=${SSH_AUTH_SOCK}
- TNT_JOBQUEUE_USER=${TARANTOOL_USER_NAME}
- TNT_JOBQUEUE_PASSWORD=${TARANTOOL_USER_PASSWORD}
- XDEBUG_CONFIG=remote_host=${LOCAL_IP}
- PHP_IDE_CONFIG=serverName=jobserver.local
tarantool_admin:
container_name: jobserver_tarantool_admin
image: quay.io/basis-company/tarantool-admin
restart: always
ports:
- "8001:80"
depends_on:
- tarantool
environment:
# https://github.com/basis-company/tarantool-admin#configure-using-env
- TARANTOOL_TCP_NODELAY=1
- TARANTOOL_DATABASE_QUERY=1
- TARANTOOL_CONNECTIONS=${TARANTOOL_USER_NAME}:${TARANTOOL_USER_PASSWORD}@tarantool:3301