httpaste/samples/httpaste.it/docker-compose.yml
2022-04-09 02:27:41 +02:00

33 lines
No EOL
922 B
YAML

version: "3.3"
services:
httpaste:
build:
context: ../..
dockerfile: Dockerfile
environment:
HTTPASTE_CONFIGPATH: /usr/local/httpaste/config.ini
volumes:
-
type: volume
source: system-shared
target: /shared
volume:
nocopy: true
- ./httpaste/config.ini:/usr/local/httpaste/config.ini
command: -s /shared/uwsgi.sock --chmod-socket=666
httpd:
build:
context: ./httpd
dockerfile: Dockerfile
ports:
- "80:80"
volumes:
-
type: volume
source: system-shared
target: /shared
volume:
nocopy: true
- ./httpd/httpd.conf:/usr/local/apache2/conf/httpd.conf
volumes:
system-shared: