-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (30 loc) · 797 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (30 loc) · 797 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
35
version: '3'
services:
portainer:
image: portainer/portainer
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
ports:
- "9000:9000"
postgres-db:
image: "postgres:9.6.3"
environment:
- POSTGRES_USER=everything-as-code
- POSTGRES_PASSWORD=12qwasyx
ports:
- "15432:5432"
everything-as-code:
build: .
image: "everything-as-code:1.2.3"
environment:
- JAVA_OPTS=-Xmx196m
- PORT=18080
ports:
- "18080:18080"
# server-full:
# image: "payara/server-full:173"
# # The -d flag turns debug mode on
# entrypoint: java -Xmx32m -XX:MetaspaceSize=8m -XX:MaxMetaspaceSize=16m -jar /opt/payara41/glassfish/lib/client/appserver-cli.jar start-domain -v -d domain1
# ports:
# - "28080:8080"
# - "24848:4848"