35 lines
909 B
Text
35 lines
909 B
Text
|
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:
|