2022-08-25 22:22:11 +02:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
httpd-registry:
|
|
|
|
container_name: "httpd-registry"
|
2024-02-20 08:35:00 +01:00
|
|
|
image: "registry.mgrote.net/httpd:v1.1.33"
|
2022-08-25 22:22:11 +02:00
|
|
|
restart: always
|
|
|
|
volumes:
|
2023-04-14 12:20:34 +02:00
|
|
|
- uploads:/usr/local/apache2/htdocs/
|
2023-10-26 00:14:16 +02:00
|
|
|
- "{{ compose_dest_basedir }}/httpd/httpd.conf:/usr/local/apache2/conf/httpd.conf:ro"
|
2022-08-25 22:22:11 +02:00
|
|
|
ports:
|
|
|
|
- 3344:80
|
2024-02-02 12:58:48 +01:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
2023-04-14 12:20:34 +02:00
|
|
|
|
|
|
|
python-api-server:
|
|
|
|
container_name: httpd-api
|
2024-02-21 00:35:04 +01:00
|
|
|
image: "registry.mgrote.net/python-api-server:v1.1.136"
|
2023-04-14 12:20:34 +02:00
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "5040:5000"
|
|
|
|
volumes:
|
|
|
|
- uploads:/uploads
|
|
|
|
environment:
|
|
|
|
# FLASK_DEBUG: 1 # for debugging
|
|
|
|
# FLASK_APP: app # for debugging
|
2023-07-05 11:47:57 +02:00
|
|
|
MAX_CONTENT_LENGTH: 500
|
2023-04-14 12:20:34 +02:00
|
|
|
UPLOAD_DIRECTORY: /uploads
|
2024-01-26 22:37:25 +01:00
|
|
|
AUTH_TOKEN: "{{ lookup('keepass', 'httpd-api-server-token', 'password') }}"
|
2023-05-12 08:18:45 +02:00
|
|
|
ENABLE_WEBSERVER: false
|
2023-04-14 12:20:34 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
uploads:
|