-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60854bc
commit a12cf95
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: "3" | ||
|
||
services: | ||
synapse-admin: | ||
container_name: synapse-admin | ||
hostname: synapse-admin | ||
image: awesometechnologies/synapse-admin:latest | ||
# build: | ||
# context: . | ||
|
||
# to use the docker-compose as standalone without a local repo clone, | ||
# replace the context definition with this: | ||
# context: https://github.com/Awesome-Technologies/synapse-admin.git | ||
|
||
# if you're building on an architecture other than amd64, make sure | ||
# to define a maximum ram for node. otherwise the build will fail. | ||
# args: | ||
# - NODE_OPTIONS="--max_old_space_size=1024" | ||
ports: | ||
- "8080:80" | ||
restart: unless-stopped |