Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
elexis-server
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
elexis
elexis-server
Commits
2c4aa3a4
Commit
2c4aa3a4
authored
Dec 04, 2018
by
Marco Descher
🏔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[14738] Add docker-compose
parent
dfd1a72b
Pipeline
#7428
passed with stages
in 1 minute and 58 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
docker-compose.yml
docker-compose.yml
+36
-0
No files found.
docker-compose.yml
0 → 100644
View file @
2c4aa3a4
# MEDEVIT <office@medevit.at>
# Docker-compose image to run ES with MySQL,
# requires docker-compose tool
#
# Adapted from https://docs.docker.com/compose/wordpress/
# to start: docker-compose up -d
# after start connect to https://localhost:8480/web/elexis-connector/connection
# to fully remove including volume: docker-compose down -v
version
:
'
3'
services
:
database
:
image
:
mysql:5.7
volumes
:
-
db_data:/var/lib/mysql
ports
:
-
"
33306:3306"
# provide mysql access on port 33306
restart
:
always
command
:
--lower_case_table_names=1
environment
:
MYSQL_ROOT_PASSWORD
:
somerootpassword
MYSQL_DATABASE
:
elexisdb
MYSQL_USER
:
elexisuser
MYSQL_PASSWORD
:
elexispassword
elexisserver
:
depends_on
:
-
database
image
:
medevit/elexis-server:latest
ports
:
-
"
8380:8380"
-
"
8480:8480"
-
"
7234:7234"
restart
:
always
environment
:
TZ
:
Europe/Zurich
volumes
:
db_data
:
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment