forked from Euro-Office/document-server-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (49 loc) · 1.57 KB
/
Copy pathdocker-compose.yml
File metadata and controls
51 lines (49 loc) · 1.57 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
51
# -----------------------------------------------------------------------------
# Minimal DocumentServer Test Setup
# -----------------------------------------------------------------------------
#
# Prerequisites:
# Before using this docker-compose setup, you must build the Docker image
# locally from the main repository:
#
# make build-image
#
# This command builds the image:
# euro-office/documentserver:latest
#
# -----------------------------------------------------------------------------
# Starting the services
# -----------------------------------------------------------------------------
#
# Start the container in the background:
#
# docker compose up -d
#
# You can monitor the container logs with:
#
# docker logs -f eo-documentserver
#
# The Document Server is fully started when you see a log message like:
#
# INFO success: docservice entered RUNNING state
#
# -----------------------------------------------------------------------------
# Access the example
# -----------------------------------------------------------------------------
#
# The example Node.js application starts automatically (EXAMPLE_ENABLED=true).
# Open the example in your browser once the container is running:
#
# http://localhost:8080/example/
#
# -----------------------------------------------------------------------------
name: minimal-documentserver-test
services:
documentserver:
image: ghcr.io/euro-office/documentserver:latest
environment:
EXAMPLE_ENABLED: "true"
JWT_SECRET: "secret"
container_name: eo-documentserver
ports:
- "8080:80"