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"
|
2018-10-09 14:44:39 +02:00
|
|
|
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
|
2021-03-05 13:07:35 +01:00
|
|
|
image: pmpc
|
2018-10-09 14:44:39 +02:00
|
|
|
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"
|