19 lines
439 B
YAML
19 lines
439 B
YAML
version: "3.9"
|
|
services:
|
|
api:
|
|
container_name: gmd-api
|
|
restart: always
|
|
build:
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./blobs:/code/blobs
|
|
- ./config.json:/code/config.json
|
|
networks:
|
|
- web
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.gckmaps.rule=Host(`gckmaps.hipstercat.fr`)"
|
|
- "traefik.http.routers.gckmaps.entrypoints=websecure"
|
|
networks:
|
|
web:
|
|
external: true |