-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (39 loc) · 913 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (39 loc) · 913 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
30
31
32
33
34
35
36
37
38
39
version: "3"
services:
package:
image: registry.gitlab.com/aplus-framework/images/package:4
container_name: package-session
working_dir: /package
volumes:
- .:/package
depends_on:
- mariadb
- memcached
- redis
tty: true
package-latest:
image: registry.gitlab.com/aplus-framework/images/package:latest
container_name: package-session-latest
working_dir: /package
volumes:
- .:/package
depends_on:
- mariadb
- memcached
- redis
tty: true
mariadb:
image: mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: framework-tests
MYSQL_USER: root
MYSQL_PASSWORD: password
container_name: session-mariadb
memcached:
image: memcached:alpine
container_name: session-memcached
redis:
image: redis:alpine
container_name: session-redis