-
Notifications
You must be signed in to change notification settings - Fork 5
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
Rory
committed
May 3, 2022
1 parent
c7454f2
commit 8d49485
Showing
1 changed file
with
69 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,69 @@ | ||
version: "3.7" | ||
# ============== | ||
# FROM https://confluence.vliz.be/pages/viewpage.action?pageId=51251214 | ||
# be.vliz.container.description: Container description | ||
# be.vliz.container.owner: Maintainer of the container | ||
# be.vliz.container.project: Name(s) of the project(s) for which the container is used | ||
# be.vliz.container.group: Bundles containers together logically | ||
# be.vliz.container.vcs-url: Link to version control | ||
# be.vliz.container.docs-url: Link to documentation | ||
# ============== | ||
# volumes: | ||
# eurobis_data: | ||
# erddap_content: | ||
|
||
networks: | ||
crate_net: | ||
# ============== | ||
services: | ||
# ------------ | ||
crate_backend: | ||
build: | ||
context: . | ||
dockerfile: ./backend/Dockerfile | ||
container_name: crate-backend | ||
networks: | ||
- crate_net | ||
env_file: | ||
- .env | ||
restart: unless-stopped | ||
# command: python /code/main.py -ll '${LOGLEVEL}' | ||
logging: | ||
driver: json-file | ||
options: | ||
max-size: 10m | ||
labels: | ||
be.vliz.container.description: "RoCrate Maker backend." | ||
be.vliz.container.owner: "cedric.decruw@vliz.be" | ||
be.vliz.container.project: "RoCRATE" | ||
be.vliz.container.group: "RoCrate-group" | ||
be.vliz.container.vcs-url: "https://github page" | ||
be.vliz.container.docs-url: "https://confluence page" | ||
|
||
# ------------ | ||
crate-frontend: | ||
build: | ||
context: . | ||
dockerfile: ./services/erddap-server/Dockerfile | ||
# image: axiom/docker-erddap:2.14 | ||
container_name: crate-frontend | ||
networks: | ||
- crate_net | ||
ports: | ||
- ${CRATE_EXPOSE_PORT:-8080}:80 | ||
# volumes: | ||
# - eurobis_data:/erddapData/ | ||
env_file: | ||
- .env | ||
restart: unless-stopped | ||
logging: | ||
driver: json-file | ||
options: | ||
max-size: 10m | ||
labels: | ||
be.vliz.container.description: "RoCrate Maker FrontEnd" | ||
be.vliz.container.owner: "cedric.decruw@vliz.be" | ||
be.vliz.container.project: "RoCRATE" | ||
be.vliz.container.group: "RoCrate-group" | ||
be.vliz.container.vcs-url: "https://github page" | ||
be.vliz.container.docs-url: "https://confluence page" |