-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add draft of docker-compose.yml
- Loading branch information
Showing
3 changed files
with
34 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
services: | ||
apiserver: | ||
build: . | ||
image: ghcr.io/l3s-learnweb/interweb:latest | ||
restart: always | ||
ports: | ||
- "8080:8080" | ||
env_file: | ||
# - .env | ||
- interweb-server/.env | ||
# depends_on: | ||
# - mariadb | ||
environment: | ||
TZ: "Europe/Berlin" | ||
QUARKUS_HTTP_PORT: 8080 | ||
|
||
# mariadb: | ||
# image: mariadb:10.11 | ||
# restart: always | ||
# ports: | ||
# - "9306:3306" | ||
# volumes: | ||
# # On WSL docker machine, it may crash during migration when mounting NTFS file-system, just restart it multiple times :/ | ||
# # https://jira.mariadb.org/browse/MDEV-29260 | ||
# - "./data/mysql:/var/lib/mysql" | ||
# environment: | ||
# TZ: "Europe/Berlin" | ||
# MARIADB_AUTO_UPGRADE: "yes" | ||
# MARIADB_RANDOM_ROOT_PASSWORD: "yes" | ||
# MARIADB_DATABASE: | ||
# MARIADB_USER: | ||
# MARIADB_PASSWORD: |
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