-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (45 loc) · 989 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
40
41
42
43
44
45
46
version: '2'
services:
preecog:
container_name: preecog
environment:
- http_proxy
- https_proxy
- no_proxy
- HTTP_PROXY
- HTTPS_PROXY
- NO_PROXY
build:
args:
PHP_VERSION: 8.2
context: .
ports:
- "8111:80"
- "443:443"
volumes:
- .:/var/www/html
- /tmp:/tmp
working_dir: /var/www/html
# networks :
# - emc2net
# depends_on:
# - sygal-db
#
# emc2-db:
# image: registre.unicaen.fr:5000/sygal-db-image
# container_name: emc2-db-container
# restart: always
# environment:
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: admin
# SYGAL_DB: emc2
# SYGAL_USER: ad_emc2
# SYGAL_PASSWORD: azerty
# ports:
# - 5432:5432
# volumes:
# # Base de dev
# - ./tmp/docker/db/dev/sql/:/sql # Scripts de création/init
# - ./data/db/dev:/var/lib/postgresql/data # Données persistées.
# networks:
# - emc2net