Hipstercat
804aa7669b
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Hipstercat <tasty@hipstercat.fr>
22 lines
487 B
YAML
22 lines
487 B
YAML
version: "3.9"
|
|
services:
|
|
api:
|
|
container_name: gmd-api
|
|
restart: always
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./blobs:/code/blobs
|
|
- ./config.json:/code/config.json
|
|
networks:
|
|
- web
|
|
ports:
|
|
- "8418:8000"
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.gckmaps.rule=Host(`gckmaps.hipstercat.fr`)"
|
|
- "traefik.http.routers.gckmaps.entrypoints=websecure"
|
|
networks:
|
|
web:
|
|
external: true |