mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-01-05 19:45:28 +03:00
STAM
511a8a115a
update requirements.txt github actions runs-on: ubuntu-24.04 make pip fix - failsafe - systemwide zabbix 7 + zabbix fixes cleanup ci wip: fixes, nginx update, support update wip: bookworm 12 base updates wip: requirements.txt cleanup zabbix USER fix WIP: debian 12 develop improvements
25 lines
474 B
YAML
25 lines
474 B
YAML
#version: '2'
|
|
services:
|
|
app:
|
|
container_name: syspass-app
|
|
image: syspass/syspass:3.2.0-php7.4
|
|
restart: always
|
|
ports:
|
|
- "80"
|
|
- "443"
|
|
links:
|
|
- db
|
|
volumes:
|
|
- /var/www/html/sysPass/app/config
|
|
- /var/www/html/sysPass/app/backup
|
|
db:
|
|
container_name: syspass-db
|
|
restart: always
|
|
image: mariadb:10.2
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=syspass
|
|
ports:
|
|
- "3306"
|
|
volumes:
|
|
- /var/lib/mysql
|