-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
39 lines (37 loc) · 1004 Bytes
/
docker-compose.yml
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:
php5.6:
image: mesa/oxid:php5.6
restart: always
container_name: oxid_php5.6
command: installOxid
working_dir: /data/source/oxrun
ports:
- "8082:80"
volumes:
- ./:/data/source/oxrun
- ./docker/bin/installOxid.sh:/usr/local/bin/installOxid
links:
- oxid_db
environment:
DOCKER_DOCUMENT_ROOT: /data/source
MYSQL_HOST: oxid_db
MYSQL_DATABASE: 'oxid'
MYSQL_USER: "oxid"
MYSQL_PASSWORD: "oxid"
OXID_SHOP_VERSION: "v4.10.4"
OXID_SHOP_URL: "http://localhost:8082"
OXID_IDEBUG: 0
OXID_ADMIN_PASSWORD: [email protected]
OXID_ADMIN_USERNAME: oxrunpassword
oxid_db:
image: mesa/oxid:db
restart: always
container_name: oxid_db
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: oxid
MYSQL_USER: oxid
MYSQL_PASSWORD: 'oxid'