Michael Grote
edbc68d36d
Reviewed-on: #585 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
34 lines
909 B
Django/Jinja
34 lines
909 B
Django/Jinja
version: '3'
|
|
services:
|
|
httpd-registry:
|
|
container_name: "httpd-registry"
|
|
image: httpd:bullseye
|
|
restart: always
|
|
volumes:
|
|
- uploads:/usr/local/apache2/htdocs/
|
|
- "{{ compose_dest_basedir }}/httpd/httpd.conf:/usr/local/apache2/conf/httpd.conf:ro"
|
|
ports:
|
|
- 3344:80
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
|
|
python-api-server:
|
|
container_name: httpd-api
|
|
image: registry.mgrote.net/python-api-server:latest
|
|
restart: always
|
|
ports:
|
|
- "5040:5000"
|
|
volumes:
|
|
- uploads:/uploads
|
|
environment:
|
|
# FLASK_DEBUG: 1 # for debugging
|
|
# FLASK_APP: app # for debugging
|
|
MAX_CONTENT_LENGTH: 500
|
|
UPLOAD_DIRECTORY: /uploads
|
|
AUTH_TOKEN: {{ lookup('keepass', 'httpd-api-server-token', 'password') }}
|
|
ENABLE_WEBSERVER: false
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
|
|
volumes:
|
|
uploads:
|