-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (44 loc) · 1.2 KB
/
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
47
version: '3'
services:
stga:
build:
context: ./s3r-stga-ar
dockerfile: Dockerfile
image: stga
ports:
- "8080:8080"
networks:
- s3r-net
container_name: stga
labels:
- traefik.backend=stga
- traefik.frontend.rule=Host:app.sw-zh-s3r-02.dhlab-basel.ch
- traefik.docker.network=s3r-net
- traefik.port=8080
sipi:
image: dhlabbasel/sipi:develop
container_name: sipi
ports:
- "1024:1024"
- "1025:1025"
volumes:
- $PWD/config:/sipi/config
- $PWD/scripts:/sipi/scripts
- $PWD/images:/sipi/images
- $PWD/server:/sipi/server
- $PWD/testDB:/sipi/testDB
- $PWD/files:/sipi/files
- $PWD/assets:/sipi/assets
restart: unless-stopped
networks:
- s3r-net
labels:
- traefik.backend=sipi
- traefik.frontend.rule=Host:sipi.sw-zh-s3r-02.dhlab-basel.ch
- traefik.docker.network=s3r-net
networks:
s3r-net:
external:
name: traefik_proxyNet
# when running this on your own machine, run 'docker network create --driver bridge traefik_proxyNet'.
# This creates the external network where the traefik container would reside on the deployment target.