publiccode.si/docker-compose.yml

27 lines
525 B
YAML
Raw Permalink Normal View History

2023-01-29 13:44:49 +01:00
# SPDX-FileCopyrightText: Free Software Foundation Europe e.V.
#
# SPDX-License-Identifier: CC0-1.0
2022-01-12 11:24:20 +01:00
version: "3"
services:
pmpc:
container_name: pmpc
2023-01-29 13:44:49 +01:00
build:
2023-01-29 13:54:07 +01:00
context: .
args:
- HUGO_DIR=/src/site
image: pmpc
restart: always
logging:
driver: json-file
options:
max-size: "5m"
max-file: "5"
2023-01-29 13:44:49 +01:00
# Reverse proxy
2022-01-12 11:24:20 +01:00
labels:
proxy.host: "publiccode.eu"
proxy.host_alias: "www.publiccode.eu"
2023-01-29 13:44:49 +01:00
proxy.port: "9260"
ports:
- "9260:8043"