-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.override.yml.dist
More file actions
35 lines (32 loc) · 957 Bytes
/
compose.override.yml.dist
File metadata and controls
35 lines (32 loc) · 957 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
# Expose all services default ports for local development
services:
db:
ports:
- ${PUBLIC_DB_PORT}:3306/tcp
nginx:
ports:
- ${PUBLIC_NGINX_PORT}:80/tcp
mailer:
ports:
- ${PUBLIC_MAILER_PORT}:8025/tcp
varnish:
ports:
- ${PUBLIC_VARNISH_PORT}:80/tcp
#pma:
# image: phpmyadmin:5.2.1
# ports:
# - ${PUBLIC_PMA_PORT}:80/tcp
# environment:
# PMA_HOST: db
# UPLOAD_LIMIT: 64M
# PMA_USER: ${MARIADB_USER:-roadiz}
# PMA_PASSWORD: ${MARIADB_PASSWORD:-roadiz}
# depends_on:
# - db
# If you depend on private Gitlab repositories, you must use a deploy token and username
#app:
# build:
# args:
# UID: ${UID}
# COMPOSER_DEPLOY_TOKEN: xxxxxxxxxxxxx
# COMPOSER_DEPLOY_TOKEN_USER: "gitlab+deploy-token-1"