We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cebb29 commit b2cc403Copy full SHA for b2cc403
1 file changed
docker-compose.yml
@@ -0,0 +1,21 @@
1
+version: "3"
2
+
3
+services:
4
+ synapse-admin:
5
+ container_name: synapse-admin
6
+ hostname: synapse-admin
7
+ image: awesometechnologies/synapse-admin:latest
8
+ # build:
9
+ # context: .
10
11
+ # to use the docker-compose as standalone without a local repo clone,
12
+ # replace the context definition with this:
13
+ # context: https://github.com/Awesome-Technologies/synapse-admin.git
14
15
+ # if you're building on an architecture other than amd64, make sure
16
+ # to define a maximum ram for node. otherwise the build will fail.
17
+ # args:
18
+ # - NODE_OPTIONS="--max_old_space_size=1024"
19
+ ports:
20
+ - "8080:80"
21
+ restart: unless-stopped
0 commit comments