31 lines
622 B
YAML
Executable File
31 lines
622 B
YAML
Executable File
services:
|
|
web:
|
|
build: .
|
|
restart: always
|
|
ports:
|
|
- "8000:80"
|
|
runtime: nvidia
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu]
|
|
volumes:
|
|
- type: bind
|
|
source: /data/Web/decpdf.site/
|
|
target: /var/www/html/
|
|
db:
|
|
image: "mariadb"
|
|
restart: always
|
|
volumes:
|
|
- type: bind
|
|
source: /data/Web/decpdf.site/database
|
|
target: /var/lib/mysql
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: wibble
|
|
memcache:
|
|
image: "memcached"
|
|
restart: always
|