-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (49 loc) · 1.19 KB
/
docker-compose.yml
File metadata and controls
50 lines (49 loc) · 1.19 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
39
40
41
42
43
44
45
46
47
48
49
50
version: '2.1'
services:
pgimp-ubuntu-16.04:
build:
context: .
dockerfile: test/envs/linux/ubuntu/16.04/Dockerfile
image: mabu/pgimp-ubuntu-16.04:latest
volumes:
- ./:/src
shm_size: '256m'
pgimp-ubuntu-18.04:
build:
context: .
dockerfile: test/envs/linux/ubuntu/18.04/Dockerfile
image: mabu/pgimp-ubuntu-18.04:latest
volumes:
- ./:/src
shm_size: '256m'
pgimp-ubuntu-20.04:
build:
context: .
dockerfile: test/envs/linux/ubuntu/20.04/Dockerfile
image: mabu/pgimp-ubuntu-20.04:latest
volumes:
- ./:/src
shm_size: '256m'
pgimp-ubuntu-20.04-installation:
build:
context: .
dockerfile: test/installation/linux/ubuntu/20.04/Dockerfile
image: mabu/pgimp-ubuntu-20.04:latest
volumes:
- ./:/src
pgimp-centos-7.4:
build:
context: .
dockerfile: test/envs/linux/centos/7.4/Dockerfile
image: mabu/pgimp-centos-7.4:latest
volumes:
- ./:/src
shm_size: '256m'
pgimp-centos-7.6:
build:
context: .
dockerfile: test/envs/linux/centos/7.6/Dockerfile
image: mabu/pgimp-centos-7.6:latest
volumes:
- ./:/src
shm_size: '256m'