-
Notifications
You must be signed in to change notification settings - Fork 782
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: build image from source * attempt to use latest maven to build * Update Dockerfile * fix: move unzip to final image * style: format Dockerfile * fix: typo in envvar * feat: provide usable docker-compose - both usable for local development, as well as deployment (to copy paste and work off of) * refactor: rename envvars
- Loading branch information
1 parent
7b4df8a
commit 8315ead
Showing
3 changed files
with
43 additions
and
41 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
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 |
---|---|---|
@@ -1,4 +1,23 @@ | ||
services: | ||
server: | ||
build: . | ||
# TODO | ||
image: ghcr.io/magefree/mage | ||
ports: | ||
- '17171:17171' | ||
- '17179:17179' | ||
# Uncomment this to configure the server for your deployment URL | ||
# extra_hosts: | ||
# - 'your-mage-domain.com:0.0.0.0' | ||
environment: | ||
# Uncomment this to configure the server for your deployment URL | ||
# - MAGE_SERVER_ADDRESS=your-mage-domain.com | ||
# Give the server a name, if you want to | ||
- MAGE_SERVER_NAME=mage-server | ||
- MAGE_MAX_SECONDS_IDLE=6000 | ||
- MAGE_AUTHENTICATION_ACTIVATED=false | ||
volumes: | ||
- xmage-db:/xmage/db | ||
- xmage-saved:/xmage/saved | ||
volumes: | ||
xmage-db: | ||
xmage-saved: |
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